Skip to content

Commit

Permalink
fix: replaced View with ScrollView
Browse files Browse the repository at this point in the history
  • Loading branch information
MAXOUXAX committed Apr 3, 2024
1 parent fad19f0 commit 047fe65
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions expo/components/ActiveRoomView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import {
FlatList,
Platform,
Pressable,
ScrollView,
StyleSheet,
} from "react-native";

Expand Down Expand Up @@ -143,7 +144,7 @@ const ActiveRoomView: React.FC<ActiveRoomViewProps> = ({ room }) => {
const networkStatus = useNetworkStatus();

return (
<View
<ScrollView
style={{
paddingVertical: 32,
paddingHorizontal: 12,
Expand Down Expand Up @@ -237,7 +238,7 @@ const ActiveRoomView: React.FC<ActiveRoomViewProps> = ({ room }) => {
</Button>
</>
)}
</View>
</ScrollView>
);
};

Expand Down

0 comments on commit 047fe65

Please sign in to comment.