Skip to content

Commit d5a5a6d

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

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

private/helloworld/App.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ 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'}]}>
30+
Hello, World!
31+
</Text>
3032
</View>
3133
</ScrollView>
3234
</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)