Skip to content
This repository has been archived by the owner on Sep 3, 2021. It is now read-only.

Commit

Permalink
Merge pull request #104 from felleslosninger/app-onboarding-instructions
Browse files Browse the repository at this point in the history
Added instructions
  • Loading branch information
h570611 authored Jul 22, 2021
2 parents e3d7af2 + 07aa6e5 commit c81bcda
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions wallet/wallet-app/components/frames/Onboarding.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,13 @@ export default function Onboarding() {

return (
<View style={styles.container}>
{!scanned ? (
<View>
<Text style={styles.instructionText}>1. Gå inn på grunnidportalen.no</Text>
<Text style={styles.instructionText}>2. Logg inn med id-porten</Text>
<Text style={styles.instructionText}>3. Skann deretter QR-koden</Text>
</View>
) : null}
{!scanned && !verified ? (
<View style={styles.camera}>
<BarCodeScanner
Expand Down Expand Up @@ -111,4 +118,8 @@ const styles = StyleSheet.create({
alignSelf: 'center',
marginTop: 100,
},
instructionText: {
fontSize: 20,
alignSelf: 'flex-start',
},
});

0 comments on commit c81bcda

Please sign in to comment.