-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(mobile): multiwallet & onboarding fixes (#753)
* fix(mobile): migration button ru locale * fix(mobile): Input leftContent * fix(mobile): fix enableNotificationsForAll * fix(mobile): fix toggle dapp notifications
- Loading branch information
1 parent
663c006
commit afcc7bd
Showing
6 changed files
with
24 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,19 @@ | ||
import { Text, isAndroid } from '@tonkeeper/uikit'; | ||
import { Steezy, Text, View, isAndroid } from '@tonkeeper/uikit'; | ||
import { StyleSheet } from 'react-native'; | ||
|
||
export const InputNumberPrefix = ({ index }: { index: number }) => ( | ||
<Text style={styles.inputNumberText} color="textSecondary" type="body1"> | ||
{index + 1}: | ||
</Text> | ||
<View style={styles.container}> | ||
<Text color="textSecondary" type="body1" textAlign="right"> | ||
{index + 1}: | ||
</Text> | ||
</View> | ||
); | ||
|
||
const styles = StyleSheet.create({ | ||
inputNumberText: { | ||
textAlignVertical: isAndroid ? 'top' : 'auto', | ||
textAlign: 'right', | ||
width: 28, | ||
left: 10, | ||
const styles = Steezy.create({ | ||
container: { | ||
flex: 1, | ||
width: 50, | ||
paddingRight: 12, | ||
justifyContent: 'center', | ||
}, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters