-
Notifications
You must be signed in to change notification settings - Fork 877
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Minor POC to showcase deep-linking abilities through the boilerplate * deep linking ios and refactor Co-authored-by: [email protected] <[email protected]> Co-authored-by: DOLLE <[email protected]> Co-authored-by: Aurélien Mutin <[email protected]>
- Loading branch information
1 parent
6bedcbe
commit 7d962ca
Showing
7 changed files
with
60 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import React from 'react' | ||
import { Text, View } from 'react-native' | ||
import { Helpers, Metrics } from 'App/Theme' | ||
|
||
/** | ||
* This is an example of a container component with a deep link. | ||
*/ | ||
const DeepLinkingScreen = () => ( | ||
<View style={[Helpers.fillCenter, Helpers.rowMain, Metrics.mediumHorizontalMargin]}> | ||
<Text> | ||
This is deep linking example screen which can be accessed using boilerplate://deeplink scheme! | ||
</Text> | ||
</View> | ||
) | ||
|
||
export default DeepLinkingScreen |
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
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