Change main screen text

This commit is contained in:
Tiago Jacobs 2022-02-11 19:30:39 -03:00
parent 7739171a62
commit f5eb4fa14b

13
App.js
View File

@ -65,25 +65,16 @@ const App: () => Node = () => {
<ScrollView <ScrollView
contentInsetAdjustmentBehavior="automatic" contentInsetAdjustmentBehavior="automatic"
style={backgroundStyle}> style={backgroundStyle}>
<Header />
<View <View
style={{ style={{
backgroundColor: isDarkMode ? Colors.black : Colors.white, backgroundColor: isDarkMode ? Colors.black : Colors.white,
}}> }}>
<Section title="Step One"> <Section title="Welcome">
Edit <Text style={styles.highlight}>App.js</Text> to change this Welcome to first version of <Text style={styles.highlight}>BigBlueButton Mobile</Text>
screen and then come back to see your edits.
</Section>
<Section title="See Your Changes">
<ReloadInstructions />
</Section> </Section>
<Section title="Debug"> <Section title="Debug">
<DebugInstructions /> <DebugInstructions />
</Section> </Section>
<Section title="Learn More">
Read the docs to discover what to do next:
</Section>
<LearnMoreLinks />
</View> </View>
</ScrollView> </ScrollView>
</SafeAreaView> </SafeAreaView>