From d04a6d7539c53ec3510175459c1ca8c8e7e994da Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Thu, 26 Jan 2023 17:55:15 -0600 Subject: Add web layout components --- src/view/com/post-thread/PostThread.tsx | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'src/view/com/post-thread/PostThread.tsx') diff --git a/src/view/com/post-thread/PostThread.tsx b/src/view/com/post-thread/PostThread.tsx index a52bc643c..59dbf1e16 100644 --- a/src/view/com/post-thread/PostThread.tsx +++ b/src/view/com/post-thread/PostThread.tsx @@ -1,6 +1,7 @@ import React, {useRef} from 'react' import {observer} from 'mobx-react-lite' -import {ActivityIndicator, FlatList, View} from 'react-native' +import {ActivityIndicator, View} from 'react-native' +import {CenteredView, FlatList} from '../util/Views' import { PostThreadViewModel, PostThreadViewPostModel, @@ -50,9 +51,9 @@ export const PostThread = observer(function PostThread({ // = if ((view.isLoading && !view.isRefreshing) || view.params.uri !== uri) { return ( - + - + ) } @@ -60,9 +61,9 @@ export const PostThread = observer(function PostThread({ // = if (view.hasError) { return ( - + - + ) } -- cgit 1.4.1