Skip to content

Commit

Permalink
feat: Add Ionicons and BounceableWind to DashboardScreen
Browse files Browse the repository at this point in the history
  • Loading branch information
noriega2112 committed Aug 28, 2024
1 parent 166e0ed commit c75605b
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ import { useAtomValue } from 'jotai'
import React from 'react'
import { Text, View } from 'react-native'
import { SheetManager } from 'react-native-actions-sheet'
import Ionicons from '@expo/vector-icons/Ionicons';
import { BounceableWind } from '@components/styled'

export const DashboardScreen = () => {
const navio = useAtomValue(navioAtom)
Expand All @@ -23,6 +25,12 @@ export const DashboardScreen = () => {
return (
<MultiPlatformSafeAreaView safeAreaClassName="flex-1">
<View className="flex-grow items-center justify-center">
<View className="flex-row justify-between items-center">
<View></View>
<BounceableWind onPress={() => navio.stacks.push('SettingsStack')}>
<Ionicons name="settings-outline" size={24} color="black" />
</BounceableWind>
</View>
<Text className="text-xl font-primary-bold">Welcome to the Dashboard</Text>
</View>
<View className="w-full p-3">
Expand Down

0 comments on commit c75605b

Please sign in to comment.