-
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.
65 fix all code warnings and go typescript as much as possible (#66)
* adding wal-lib types * more fixes with new types * processing indicator per chat session fixed * more fixes for credential refactor * epic typescript refactor * password validation and many small tweaks * changes making/reading bar codes * many UX adjustments Co-authored-by: 2byrds <[email protected]>
- Loading branch information
Showing
65 changed files
with
4,019 additions
and
4,369 deletions.
There are no files selected for viewing
Binary file not shown.
This file was deleted.
Oops, something went wrong.
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,19 +1,11 @@ | ||
import 'react-native-gesture-handler'; | ||
import React from 'react'; | ||
|
||
//import * as SplashScreen from 'expo-splash-screen'; | ||
import Providers from './src/navigation'; | ||
|
||
export default function App() { | ||
//SplashScreen.hideAsync(); | ||
return ( | ||
<Providers /> | ||
); | ||
} | ||
|
||
// const styles = StyleSheet.create({ | ||
// container: { | ||
// flex: 1, | ||
// backgroundColor: '#fff', | ||
// alignItems: 'center', | ||
// justifyContent: 'center', | ||
// }, | ||
// }); | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"cli": { | ||
"version": ">= 0.53.0" | ||
}, | ||
"build": { | ||
"development": { | ||
"distribution": "internal", | ||
"android": { | ||
"gradleCommand": ":app:assembleDebug" | ||
}, | ||
"ios": { | ||
"buildConfiguration": "Debug" | ||
} | ||
}, | ||
"preview": { | ||
"distribution": "internal" | ||
}, | ||
"production": {} | ||
}, | ||
"submit": { | ||
"production": {} | ||
} | ||
} |
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,28 +1,17 @@ | ||
import React from 'react'; | ||
import { Dimensions, StyleSheet } from 'react-native'; | ||
import { Button } from 'react-native-paper'; | ||
import {styles} from "../styles/styles"; | ||
|
||
|
||
const { width, height } = Dimensions.get('screen'); | ||
|
||
export default function FormButton({ title, modeValue, ...rest }) { | ||
return ( | ||
<Button | ||
mode={modeValue} | ||
{...rest} | ||
style={styles.button} | ||
contentStyle={styles.buttonContainer} | ||
> | ||
{title} | ||
</Button> | ||
); | ||
} | ||
|
||
const styles = StyleSheet.create({ | ||
button: { | ||
marginTop: 10, | ||
}, | ||
buttonContainer: { | ||
width: width / 2, | ||
height: height / 15, | ||
}, | ||
}); |
Oops, something went wrong.