We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbcfc6e commit 10b984fCopy full SHA for 10b984f
app/client/mobile/src/welcome/Welcome.styled.ts
@@ -81,6 +81,12 @@ export const styles = StyleSheet.create({
81
},
82
submit: {
83
borderRadius: 8,
84
- width: 192,
85
+ submitLabel: {
86
+ width: 128,
87
+ textAlign: 'center',
88
+ color: 'white',
89
+ fontSize: 18,
90
+ fontWeight: 600,
91
+ }
92
});
app/client/mobile/src/welcome/Welcome.tsx
@@ -56,7 +56,9 @@ export function Welcome({next}: {next: () => void}) {
56
</View>
57
<View style={styles.start}>
58
<Button mode="contained" textColor="white" style={styles.submit} onPress={next}>
59
- {state.strings.getStarted}
+ <Text style={styles.submitLabel}>
60
+ {state.strings.getStarted}
61
+ </Text>
62
</Button>
63
64
0 commit comments