We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e628e75 commit 92a3867Copy full SHA for 92a3867
src/views/navigation/tabs/InverterListTab.tsx
@@ -5,19 +5,19 @@ import { useTheme } from 'react-native-paper';
5
import DeviceOfflineWrapper from '@/components/DeviceOfflineWrapper';
6
import InverterList from '@/components/inverters/InverterList';
7
8
-import { StyledScrollView } from '@/style';
+import { StyledView } from '@/style';
9
10
const InverterListTab: FC = () => {
11
const theme = useTheme();
12
13
return (
14
- <StyledScrollView theme={theme}>
+ <StyledView theme={theme}>
15
<DeviceOfflineWrapper>
16
<Box style={{ flex: 1, justifyContent: 'flex-start', width: '100%' }}>
17
<InverterList />
18
</Box>
19
</DeviceOfflineWrapper>
20
- </StyledScrollView>
+ </StyledView>
21
);
22
};
23
0 commit comments