Add left column of web shell

This commit is contained in:
Paul Frazee 2023-01-26 19:06:46 -06:00
parent 20ccb03427
commit c24d0254bc
6 changed files with 129 additions and 69 deletions

View file

@ -1,7 +1,6 @@
import React, {useEffect, useState} from 'react'
import {
ActivityIndicator,
FlatList,
StyleSheet,
TouchableOpacity,
View,
@ -13,6 +12,7 @@ import {
} from '@fortawesome/react-native-fontawesome'
import {observer} from 'mobx-react-lite'
import _omit from 'lodash.omit'
import {CenteredView, FlatList} from '../util/Views'
import {ErrorScreen} from '../util/error/ErrorScreen'
import {Link} from '../util/Link'
import {Text} from '../util/text/Text'
@ -120,12 +120,14 @@ export const SuggestedFollows = observer(
return (
<View style={styles.container}>
{view.hasError ? (
<ErrorScreen
title="Failed to load suggestions"
message="There was an error while trying to load suggested follows."
details={view.error}
onPressTryAgain={onRefresh}
/>
<CenteredView>
<ErrorScreen
title="Failed to load suggestions"
message="There was an error while trying to load suggested follows."
details={view.error}
onPressTryAgain={onRefresh}
/>
</CenteredView>
) : view.isEmpty ? (
<View />
) : (

View file

@ -24,10 +24,6 @@ export const BlurView = ({
}
const styles = StyleSheet.create({
blur: {
// @ts-ignore using an RNW-specific attribute here -prf
backdropFilter: 'blur(5px)',
},
dark: {
backgroundColor: '#0008',
},