···11import React, {useState} from 'react'
22import {ScrollView, StyleSheet, TouchableOpacity, View} from 'react-native'
33import {observer} from 'mobx-react-lite'
44+import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome'
45import {Slider} from '@miblanchard/react-native-slider'
56import {Text} from '../com/util/text/Text'
67import {useStores} from 'state/index'
···158159159160 <View style={[pal.viewLight, styles.card]}>
160161 <Text type="title-sm" style={[pal.text, s.pb5]}>
161161- Show Posts from My Feeds (Experimental)
162162+ <FontAwesomeIcon icon="flask" color={pal.colors.text} /> Show
163163+ Posts from My Feeds
162164 </Text>
163165 <Text style={[pal.text, s.pb10]}>
164166 Set this setting to "Yes" to show samples of your saved feeds in
165165- your following feed.
167167+ your following feed. This is an experimental feature.
166168 </Text>
167169 <ToggleButton
168170 type="default-light"
+18
src/view/screens/PreferencesThreads.tsx
···11import React from 'react'
22import {ScrollView, StyleSheet, TouchableOpacity, View} from 'react-native'
33import {observer} from 'mobx-react-lite'
44+import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome'
45import {Text} from '../com/util/text/Text'
56import {useStores} from 'state/index'
67import {s, colors} from 'lib/styles'
···7677 label={store.preferences.threadFollowedUsersFirst ? 'Yes' : 'No'}
7778 isSelected={store.preferences.threadFollowedUsersFirst}
7879 onPress={store.preferences.toggleThreadFollowedUsersFirst}
8080+ />
8181+ </View>
8282+8383+ <View style={[pal.viewLight, styles.card]}>
8484+ <Text type="title-sm" style={[pal.text, s.pb5]}>
8585+ <FontAwesomeIcon icon="flask" color={pal.colors.text} /> Threaded
8686+ Mode
8787+ </Text>
8888+ <Text style={[pal.text, s.pb10]}>
8989+ Set this setting to "Yes" to show replies in a threaded view. This
9090+ is an experimental feature.
9191+ </Text>
9292+ <ToggleButton
9393+ type="default-light"
9494+ label={store.preferences.threadTreeViewEnabled ? 'Yes' : 'No'}
9595+ isSelected={store.preferences.threadTreeViewEnabled}
9696+ onPress={store.preferences.toggleThreadTreeViewEnabled}
7997 />
8098 </View>
8199 </View>