-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: added account header * feat: Ensure username is set during initial user login * feat: added hook useUserFullProfile * feat: added info text to inputs * chore: improved edit page * feat: ask-name page lifting * chore: improved headers * refactor: mooving InputRules (old inputRestriction) to constant * fix: new way to get participant id * chore: added InDev page on page not implemented * fix: handle closing room * refactor: create component to rooms header
- Loading branch information
1 parent
eeadb47
commit d607946
Showing
26 changed files
with
432 additions
and
166 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,7 @@ | ||
import Hammer from "phosphor-react-native/src/icons/Hammer"; | ||
import React from "react"; | ||
import { View } from "react-native"; | ||
|
||
import { Text } from "../../components/Themed"; | ||
import InDeveloppement from "../../components/InDeveloppement"; | ||
|
||
export default function TabsFriends() { | ||
return ( | ||
<View | ||
style={{ | ||
flex: 1, | ||
justifyContent: "center", | ||
alignItems: "center", | ||
flexDirection: "column", | ||
padding: 32, | ||
gap: 16, | ||
}} | ||
> | ||
<Hammer size={32} weight="fill" color="black" /> | ||
<Text | ||
style={{ | ||
fontSize: 16, | ||
textAlign: "center", | ||
fontFamily: "Outfit-Bold", | ||
}} | ||
> | ||
Cette page est en cours de développement. Merci de revenir plus tard. | ||
</Text> | ||
</View> | ||
); | ||
return <InDeveloppement />; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import InDeveloppement from "../../../../components/InDeveloppement"; | ||
|
||
export default function Help() { | ||
return <InDeveloppement />; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import InDeveloppement from "../../../../components/InDeveloppement"; | ||
|
||
export default function Notifications() { | ||
return <InDeveloppement />; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import InDeveloppement from "../../../../components/InDeveloppement"; | ||
|
||
export default function Security() { | ||
return <InDeveloppement />; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.