diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-03-06 10:54:56 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-06 10:54:56 -0600 |
commit | eeac64cc88f37fe561e3c4361f40681fbe2f6d99 (patch) | |
tree | 314f889b8e283cd9f9b4dd416a849cee1ce7d82e /src/view/screens/Debug.tsx | |
parent | 159615990d95aee47a983fd704a87443ec2f29b1 (diff) | |
download | voidsky-eeac64cc88f37fe561e3c4361f40681fbe2f6d99.tar.zst |
Look & feel updates: replace the "FAB" with a footer menu item, update the side menu (#263)
* Remove old tab controls from the mobile shell * Add 'compose' and 'profile' to the footer; remove the FAB * Fix lint * Tune the footer icons * Tune the 'current' state of footer icons * Add 2xl text styles * Tune the footer icons a bit more * Fix lint * More footer tuning
Diffstat (limited to 'src/view/screens/Debug.tsx')
-rw-r--r-- | src/view/screens/Debug.tsx | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/view/screens/Debug.tsx b/src/view/screens/Debug.tsx index 52a84c649..657f38d57 100644 --- a/src/view/screens/Debug.tsx +++ b/src/view/screens/Debug.tsx @@ -207,6 +207,21 @@ function TypographyView() { const pal = usePalette('default') return ( <View style={[pal.view]}> + <Text type="2xl-thin" style={[pal.text]}> + '2xl-thin' lorem ipsum dolor + </Text> + <Text type="2xl" style={[pal.text]}> + '2xl' lorem ipsum dolor + </Text> + <Text type="2xl-medium" style={[pal.text]}> + '2xl-medium' lorem ipsum dolor + </Text> + <Text type="2xl-bold" style={[pal.text]}> + '2xl-bold' lorem ipsum dolor + </Text> + <Text type="2xl-heavy" style={[pal.text]}> + '2xl-heavy' lorem ipsum dolor + </Text> <Text type="xl-thin" style={[pal.text]}> 'xl-thin' lorem ipsum dolor </Text> |