From 99360f7bd90480b0c382014fa7d889aef8c433a4 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Fri, 27 Jan 2023 00:16:07 -0600 Subject: Implement basic web composer --- src/view/shell/web/DesktopRightColumn.tsx | 52 +++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 src/view/shell/web/DesktopRightColumn.tsx (limited to 'src/view/shell/web/DesktopRightColumn.tsx') diff --git a/src/view/shell/web/DesktopRightColumn.tsx b/src/view/shell/web/DesktopRightColumn.tsx new file mode 100644 index 000000000..2daa16f6a --- /dev/null +++ b/src/view/shell/web/DesktopRightColumn.tsx @@ -0,0 +1,52 @@ +import React from 'react' +import {View, StyleSheet} from 'react-native' +import {Link} from '../../com/util/Link' +import {Text} from '../../com/util/text/Text' +import {usePalette} from '../../lib/hooks/usePalette' +import {MagnifyingGlassIcon} from '../../lib/icons' +import {LiteSuggestedFollows} from '../../com/discover/LiteSuggestedFollows' +import {s} from '../../lib/styles' + +export const DesktopRightColumn: React.FC = () => { + const pal = usePalette('default') + return ( + + + + + + + Search + + + + Suggested Follows + + + + ) +} + +const styles = StyleSheet.create({ + container: { + position: 'absolute', + right: 'calc(50vw - 650px)', + width: '350px', + height: '100%', + borderLeftWidth: 1, + overscrollBehavior: 'auto', + paddingLeft: 30, + paddingTop: 10, + }, + searchContainer: { + flexDirection: 'row', + alignItems: 'center', + paddingHorizontal: 14, + paddingVertical: 10, + borderRadius: 20, + marginBottom: 20, + }, + searchIcon: { + marginRight: 5, + }, +}) -- cgit 1.4.1