Skip to content

Commit abf677c

Browse files
committed
fix: helloworld text to be visible in dark mode, missing Gems in helloworld
1 parent 0820933 commit abf677c

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

private/helloworld/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ function App(): React.ReactNode {
2626
<StatusBar barStyle={isDarkMode ? 'light-content' : 'dark-content'} />
2727
<ScrollView contentInsetAdjustmentBehavior="automatic">
2828
<View>
29-
<Text style={styles.title}>Hello, World!</Text>
29+
<Text style={[styles.title,{color:isDarkMode ? 'white' : 'black'}]}>Hello, World!</Text>
3030
</View>
3131
</ScrollView>
3232
</SafeAreaView>

private/helloworld/Gemfile.lock

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,13 +98,15 @@ PLATFORMS
9898

9999
DEPENDENCIES
100100
activesupport (>= 6.1.7.5, < 7.1.0)
101+
base64
101102
benchmark
102103
bigdecimal
103104
cocoapods (~> 1.13, != 1.15.1, != 1.15.0)
104105
concurrent-ruby (<= 1.3.4)
105106
ffi (>= 1.17.2)
106107
logger
107108
mutex_m
109+
nkf
108110
rexml (>= 3.3.9)
109111
xcodeproj (< 1.26.0)
110112

0 commit comments

Comments
 (0)