-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
114 changed files
with
14,308 additions
and
0 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,6 @@ | ||
|
||
[android] | ||
target = Google Inc.:Google APIs:23 | ||
|
||
[maven_repositories] | ||
central = https://repo1.maven.org/maven2 |
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,4 @@ | ||
module.exports = { | ||
root: true, | ||
extends: '@react-native-community', | ||
}; |
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,74 @@ | ||
[ignore] | ||
; We fork some components by platform | ||
.*/*[.]android.js | ||
|
||
; Ignore "BUCK" generated dirs | ||
<PROJECT_ROOT>/\.buckd/ | ||
|
||
; Ignore polyfills | ||
node_modules/react-native/Libraries/polyfills/.* | ||
|
||
; These should not be required directly | ||
; require from fbjs/lib instead: require('fbjs/lib/warning') | ||
node_modules/warning/.* | ||
|
||
; Flow doesn't support platforms | ||
.*/Libraries/Utilities/LoadingView.js | ||
|
||
[untyped] | ||
.*/node_modules/@react-native-community/cli/.*/.* | ||
|
||
[include] | ||
|
||
[libs] | ||
node_modules/react-native/interface.js | ||
node_modules/react-native/flow/ | ||
|
||
[options] | ||
emoji=true | ||
|
||
esproposal.optional_chaining=enable | ||
esproposal.nullish_coalescing=enable | ||
|
||
module.file_ext=.js | ||
module.file_ext=.json | ||
module.file_ext=.ios.js | ||
|
||
munge_underscores=true | ||
|
||
module.name_mapper='^react-native/\(.*\)$' -> '<PROJECT_ROOT>/node_modules/react-native/\1' | ||
module.name_mapper='^@?[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> '<PROJECT_ROOT>/node_modules/react-native/Libraries/Image/RelativeImageStub' | ||
|
||
suppress_type=$FlowIssue | ||
suppress_type=$FlowFixMe | ||
suppress_type=$FlowFixMeProps | ||
suppress_type=$FlowFixMeState | ||
|
||
suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(<VERSION>\\)? *\\(site=[a-z,_]*react_native\\(_ios\\)?_\\(oss\\|fb\\)[a-z,_]*\\)?)\\) | ||
suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(<VERSION>\\)? *\\(site=[a-z,_]*react_native\\(_ios\\)?_\\(oss\\|fb\\)[a-z,_]*\\)?)\\)?:? #[0-9]+ | ||
suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError | ||
|
||
[lints] | ||
sketchy-null-number=warn | ||
sketchy-null-mixed=warn | ||
sketchy-number=warn | ||
untyped-type-import=warn | ||
nonstrict-import=warn | ||
deprecated-type=warn | ||
unsafe-getters-setters=warn | ||
inexact-spread=warn | ||
unnecessary-invariant=warn | ||
signature-verification-failure=warn | ||
deprecated-utility=error | ||
|
||
[strict] | ||
deprecated-type | ||
nonstrict-import | ||
sketchy-null | ||
unclear-type | ||
unsafe-getters-setters | ||
untyped-import | ||
untyped-type-import | ||
|
||
[version] | ||
^0.113.0 |
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 @@ | ||
*.pbxproj -text |
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,59 @@ | ||
# OSX | ||
# | ||
.DS_Store | ||
|
||
# Xcode | ||
# | ||
build/ | ||
*.pbxuser | ||
!default.pbxuser | ||
*.mode1v3 | ||
!default.mode1v3 | ||
*.mode2v3 | ||
!default.mode2v3 | ||
*.perspectivev3 | ||
!default.perspectivev3 | ||
xcuserdata | ||
*.xccheckout | ||
*.moved-aside | ||
DerivedData | ||
*.hmap | ||
*.ipa | ||
*.xcuserstate | ||
|
||
# Android/IntelliJ | ||
# | ||
build/ | ||
.idea | ||
.gradle | ||
local.properties | ||
*.iml | ||
|
||
# node.js | ||
# | ||
node_modules/ | ||
npm-debug.log | ||
yarn-error.log | ||
|
||
# BUCK | ||
buck-out/ | ||
\.buckd/ | ||
*.keystore | ||
!debug.keystore | ||
|
||
# fastlane | ||
# | ||
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the | ||
# screenshots whenever they are needed. | ||
# For more information about the recommended setup visit: | ||
# https://docs.fastlane.tools/best-practices/source-control/ | ||
|
||
*/fastlane/report.xml | ||
*/fastlane/Preview.html | ||
*/fastlane/screenshots | ||
|
||
# Bundle artifact | ||
*.jsbundle | ||
|
||
# CocoaPods | ||
/ios/Pods/ |
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,6 @@ | ||
module.exports = { | ||
bracketSpacing: false, | ||
jsxBracketSameLine: true, | ||
singleQuote: true, | ||
trailingComma: 'all', | ||
}; |
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 @@ | ||
{} |
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,52 @@ | ||
/** | ||
* Sample React Native App | ||
* https://github.com/facebook/react-native | ||
* | ||
* @format | ||
* @flow strict-local | ||
*/ | ||
|
||
import React from 'react'; | ||
|
||
import SeekerSignUp1 from './Screens/SeekerSignUp/SeekerSignUp1' | ||
import SeekerSignUp2 from './Screens/SeekerSignUp/SeekerSignUp2' | ||
import SeekerSignUp3 from './Screens/SeekerSignUp/SeekerSignUp3' | ||
import SeekerStart from './Screens/SeekerStart/SeekerStart' | ||
import RequestScreen from './Screens/RequestScreen/RequestScreen' | ||
import PendingScreen from './Screens/PendingScreen/PendingScreen' | ||
import OnTheWayScreen from './Screens/OnTheWayScreen/OnTheWayScreen' | ||
import FeedbackScreen from './Screens/FeedbackScreen/FeedbackScreen' | ||
import ArrivedScreen from './Screens/ArrivedScreen/ArrivedScreen' | ||
import { NavigationContainer } from '@react-navigation/native'; | ||
import { createStackNavigator } from 'react-navigation-stack'; | ||
import { createAppContainer, NavigationEvents } from 'react-navigation'; | ||
import StopWatch from './Components/stopwatch' | ||
|
||
|
||
const RootStack = createStackNavigator( | ||
{ | ||
SeekerSignUp1: SeekerSignUp1, | ||
SeekerSignUp2: SeekerSignUp2, | ||
SeekerSignUp3: SeekerSignUp3, | ||
SeekerStart : SeekerStart, | ||
RequestScreen : RequestScreen, | ||
PendingScreen : PendingScreen, | ||
OnTheWayScreen: OnTheWayScreen, | ||
FeedbackScreen: FeedbackScreen, | ||
ArrivedScreen : ArrivedScreen, | ||
}, | ||
{ | ||
headerMode : 'none' | ||
}, | ||
{ | ||
initialRouteName: 'SeekerSignUp1', | ||
} | ||
); | ||
|
||
const AppContainer = createAppContainer(RootStack); | ||
|
||
export default class App extends React.Component { | ||
render() { | ||
return <AppContainer />; | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,22 @@ | ||
import React from 'react'; | ||
import Styled from 'styled-components/native'; | ||
|
||
|
||
const Container = Styled.SafeAreaView` | ||
flex: 1; | ||
background-color: #FFFFFF; | ||
align-items: center; | ||
justify-content: center; | ||
`; | ||
|
||
interface Props {} | ||
|
||
const Background = ({ }: Props) => { | ||
return( | ||
<Container> | ||
|
||
</Container> | ||
); | ||
}; | ||
|
||
export default Background; |
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,33 @@ | ||
import React from 'react'; | ||
import Styled from 'styled-components/native'; | ||
|
||
const StyleButton = Styled.TouchableOpacity` | ||
width: 100%; | ||
height: 40px; | ||
border-radius: 4px; | ||
justify-content: center; | ||
align-items: center; | ||
border: 1px; | ||
border-color: #333333; | ||
`; | ||
|
||
const Label = Styled.Text` | ||
color: #324ca8; | ||
`; | ||
|
||
interface Props { | ||
label: string; | ||
style?: Object; | ||
onPress?: () => void; | ||
} | ||
|
||
const Button = ({ label, style, onPress}: Props) => { | ||
return( | ||
<StyleButton style = {style} onPress ={onPress}> | ||
<Label>{label}</Label> | ||
</StyleButton> | ||
); | ||
}; | ||
|
||
|
||
export default Button; |
108 changes: 108 additions & 0 deletions
108
SeekerScreenLatest/Components/GetLocation/GetLocation.js
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,108 @@ | ||
//This is an example code to get Geolocation// | ||
import React from 'react'; | ||
//import react in our code. | ||
import {View, Text, StyleSheet, Image ,PermissionsAndroid,Platform} from 'react-native'; | ||
//import all the components we are going to use. | ||
import Geolocation from '@react-native-community/geolocation'; | ||
|
||
|
||
export default class GetLocation extends React.Component { | ||
state = { | ||
currentLongitude: 'unknown',//Initial Longitude | ||
currentLatitude: 'unknown',//Initial Latitude | ||
} | ||
componentDidMount = () => { | ||
var that =this; | ||
//Checking for the permission just after component loaded | ||
if(Platform.OS === 'ios'){ | ||
this.callLocation(that); | ||
}else{ | ||
async function requestLocationPermission() { | ||
try { | ||
const granted = await PermissionsAndroid.request( | ||
PermissionsAndroid.PERMISSIONS.ACCESS_FINE_LOCATION,{ | ||
'title': 'Location Access Required', | ||
'message': 'This App needs to Access your location' | ||
} | ||
) | ||
if (granted === PermissionsAndroid.RESULTS.GRANTED) { | ||
//To Check, If Permission is granted | ||
that.callLocation(that); | ||
} else { | ||
alert("Permission Denied"); | ||
} | ||
} catch (err) { | ||
alert("err",err); | ||
console.warn(err) | ||
} | ||
} | ||
requestLocationPermission(); | ||
} | ||
} | ||
callLocation(that){ | ||
//alert("callLocation Called"); | ||
Geolocation.getCurrentPosition( | ||
//Will give you the current location | ||
(position) => { | ||
const currentLongitude = JSON.stringify(position.coords.longitude); | ||
//getting the Longitude from the location json | ||
const currentLatitude = JSON.stringify(position.coords.latitude); | ||
//getting the Latitude from the location json | ||
that.setState({ currentLongitude:currentLongitude }); | ||
//Setting state Longitude to re re-render the Longitude Text | ||
that.setState({ currentLatitude:currentLatitude }); | ||
//Setting state Latitude to re re-render the Longitude Text | ||
}, | ||
(error) => alert(error.message), | ||
{ enableHighAccuracy: true, timeout: 20000, maximumAge: 1000 } | ||
); | ||
that.watchID = Geolocation.watchPosition((position) => { | ||
//Will give you the location on location change | ||
console.log(position); | ||
const currentLongitude = JSON.stringify(position.coords.longitude); | ||
//getting the Longitude from the location json | ||
const currentLatitude = JSON.stringify(position.coords.latitude); | ||
//getting the Latitude from the location json | ||
that.setState({ currentLongitude:currentLongitude }); | ||
//Setting state Longitude to re re-render the Longitude Text | ||
that.setState({ currentLatitude:currentLatitude }); | ||
//Setting state Latitude to re re-render the Longitude Text | ||
}); | ||
} | ||
componentWillUnmount = () => { | ||
Geolocation.clearWatch(this.watchID); | ||
} | ||
render() { | ||
return ( | ||
<View style = {styles.container}> | ||
<Image | ||
source={{uri:'https://png.icons8.com/dusk/100/000000/compass.png'}} | ||
style={{width: 100, height: 100}} | ||
/> | ||
<Text style = {styles.boldText}> | ||
You are Here | ||
</Text> | ||
<Text style={{justifyContent:'center',alignItems: 'center',marginTop:16}}> | ||
Longitude: {this.state.currentLongitude} | ||
</Text> | ||
<Text style={{justifyContent:'center',alignItems: 'center',marginTop:16}}> | ||
Latitude: {this.state.currentLatitude} | ||
</Text> | ||
</View> | ||
) | ||
} | ||
} | ||
const styles = StyleSheet.create ({ | ||
container: { | ||
flex: 1, | ||
alignItems: 'center', | ||
justifyContent:'center', | ||
marginTop: 50, | ||
padding:16, | ||
backgroundColor:'white' | ||
}, | ||
boldText: { | ||
fontSize: 30, | ||
color: 'red', | ||
} | ||
}) |
Oops, something went wrong.