Skip to content

Commit

Permalink
Reformat HomeScreen.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
MasoudFallahpourbaee committed Oct 9, 2023
1 parent ea06a38 commit c8b3660
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions TestApp/src/home/HomeScreen.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import React from 'react';
import { ScrollView, Text, useColorScheme, View } from 'react-native';
import type { NativeStackNavigationProp } from '@react-navigation/native-stack';
import styles, { backgroundStyle, Colors } from '../common/ui/Styles';
import {ScrollView, Text, useColorScheme, View} from 'react-native';
import type {NativeStackNavigationProp} from '@react-navigation/native-stack';
import styles, {backgroundStyle, Colors} from '../common/ui/Styles';
import testProps from '../common/util/TestProps';
import type { AppStackParamList } from '../../App';
import { useNavigation } from '@react-navigation/native';
import type {AppStackParamList} from '../../App';
import {useNavigation} from '@react-navigation/native';

type HomeNavigationProp = NativeStackNavigationProp<AppStackParamList, 'Home'>;

Expand All @@ -14,7 +14,7 @@ export default function HomeScreen() {

return (
<ScrollView
contentInsetAdjustmentBehavior='automatic'
contentInsetAdjustmentBehavior="automatic"
style={backgroundStyle(styles.scrollView, isDarkMode)}>
<View
style={{
Expand Down

0 comments on commit c8b3660

Please sign in to comment.