diff --git a/src/view/com/profile/ProfileHeader.tsx b/src/view/com/profile/ProfileHeader.tsx index 7a26fa1628..228b6c594a 100644 --- a/src/view/com/profile/ProfileHeader.tsx +++ b/src/view/com/profile/ProfileHeader.tsx @@ -152,7 +152,7 @@ export const ProfileHeader = observer(function ProfileHeader({ } return ( - + ( @@ -20,4 +30,37 @@ export function UserBanner({handle}: {handle: string}) { ) + + const handleEditBanner = useCallback(() => { + Alert.alert('TB Implemented') + }, []) + + return isMe ? ( + + {renderSvg()} + + + + + ) : ( + renderSvg() + ) } + +const styles = StyleSheet.create({ + editButtonContainer: { + position: 'absolute', + bottom: 6, + right: 6, + backgroundColor: colors.gray5, + width: 20, + height: 20, + borderRadius: 10, + alignItems: 'center', + justifyContent: 'center', + }, +})