File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed
wallets/rn_cli_wallet/src Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ export function Chains({chains}: Props) {
3030 source = { logo }
3131 style = { [ styles . chainLogo , { backgroundColor : Theme [ 'bg-300' ] } ] }
3232 />
33- < Text style = { styles . chainName } > { chain . name } </ Text >
33+ < Text style = { [ styles . chainName , { color : Theme [ 'fg-150' ] } ] } > { chain . name } </ Text >
3434 </ View >
3535 ) ;
3636 } ) }
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ export function RootStackNavigator() {
4040 options = { {
4141 headerShown : true ,
4242 headerTitle : 'Session Details' ,
43- headerBackTitleVisible : false ,
43+ headerBackTitle : '' ,
4444 headerTintColor : Theme [ 'fg-100' ] ,
4545 } }
4646 />
@@ -54,8 +54,9 @@ export function RootStackNavigator() {
5454 component = { LogList }
5555 options = { {
5656 headerShown : true ,
57- headerBackTitleVisible : false ,
5857 title : 'Logs' ,
58+ headerBackTitle : '' ,
59+ headerTintColor : Theme [ 'fg-100' ] ,
5960 } }
6061 />
6162 </ StackNavigator . Navigator >
Original file line number Diff line number Diff line change 11import React from 'react' ;
2- import { FlatList , SafeAreaView , StyleSheet } from 'react-native' ;
2+ import { FlatList , StyleSheet } from 'react-native' ;
3+ import { SafeAreaView } from 'react-native-safe-area-context' ;
34
45import { Log } from './components/Log' ;
56import { useTheme } from '@/hooks/useTheme' ;
You can’t perform that action at this time.
0 commit comments