-
Notifications
You must be signed in to change notification settings - Fork 198
/
Copy pathProfileScreen.js
39 lines (35 loc) · 1.01 KB
/
ProfileScreen.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/* eslint-disable react/display-name */
import React from "react";
import { ScrollView, StatusBar } from "react-native";
import ProfileHeader from "../components/ProfileHeader";
import { FlatFeed } from "expo-activity-feed";
import Button from "../components/Button";
export const navigationOptions = ({ navigation }) => ({
headerStyle: {
backgroundColor: "transparent",
borderBottomColor: "transparent",
},
headerRight: () => (
<Button pressed={() => navigation.navigate("EditProfile")} style={{ marginRight: 10 }}>
Edit Profile
</Button>
),
headerTransparent: true,
headerBackTitle: null
})
// TODO: Convert to FC
export default class ProfileScreen extends React.Component {
componentDidMount() {
this._navListener = this.props.navigation.addListener("didFocus", () => {
StatusBar.setBarStyle("light-content");
});
}
render() {
return (
<ScrollView style={{ flex: 1 }}>
<ProfileHeader />
<FlatFeed feedGroup="user" />
</ScrollView>
);
}
}