Skip to content

Commit 2ff9351

Browse files
chore: small ui details
1 parent 97628fa commit 2ff9351

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

wallets/rn_cli_wallet/src/components/Modal/Chains.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
})}

wallets/rn_cli_wallet/src/navigators/RootStackNavigator.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff 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>

wallets/rn_cli_wallet/src/screens/LogList/index.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import 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

45
import {Log} from './components/Log';
56
import {useTheme} from '@/hooks/useTheme';

0 commit comments

Comments
 (0)