mirror of
https://github.com/mosip/inji-wallet.git
synced 2026-01-09 13:38:01 -05:00
* feat(INJI-474): show popup for invalid QR * at times a scanned QR code is neither online nor offline Co-authored-by: adityankannan-tw <109274996+adityankannan-tw@users.noreply.github.com> Signed-off-by: Harsh Vardhan <harsh59v@gmail.com> * refactor(INJI-474): add a dismiss-able popup w buttons Signed-off-by: Harsh Vardhan <harsh59v@gmail.com> * feat(INJI-474): use polyfill for URL searchParams feat Signed-off-by: Harsh Vardhan <harsh59v@gmail.com> * feat(INJI-474): move popup buttons to a single row Signed-off-by: Harsh Vardhan <harsh59v@gmail.com> * refactor(INJI-474): align buttons in popup Co-authored-by: Anil kumar M <106086523+Anil-kumar-Majji@users.noreply.github.com> Signed-off-by: Harsh Vardhan <harsh59v@gmail.com> * feat(INJI-474): don't show Loader on invalidQR & fix QR type logic Signed-off-by: Harsh Vardhan <harsh59v@gmail.com> * refactor(INJI-474): propagate btn style changes to Themes Co-authored-by: Vijay <94220135+vijay151096@users.noreply.github.com> Signed-off-by: Harsh Vardhan <harsh59v@gmail.com> --------- Signed-off-by: Harsh Vardhan <harsh59v@gmail.com> Co-authored-by: Harsh Vardhan <harsh59v@gmail.com> Co-authored-by: Anil kumar M <106086523+Anil-kumar-Majji@users.noreply.github.com> Co-authored-by: Vijay <94220135+vijay151096@users.noreply.github.com>
11 lines
425 B
JavaScript
11 lines
425 B
JavaScript
import 'react-native-gesture-handler';
|
|
import 'react-native-url-polyfill/auto'; // https://stackoverflow.com/a/75787849
|
|
import {registerRootComponent} from 'expo';
|
|
|
|
import App from './App';
|
|
|
|
// registerRootComponent calls AppRegistry.registerComponent('main', () => App);
|
|
// It also ensures that whether you load the app in Expo Go or in a native build,
|
|
// the environment is set up appropriately
|
|
registerRootComponent(App);
|