Skip to content

Latest commit

 

History

History
96 lines (95 loc) · 3.02 KB

File metadata and controls

96 lines (95 loc) · 3.02 KB

. ├── LICENSE ├── README.md ├── android ├── app │   ├── components │   │   └── base.js │   ├── images │   │   └── common │   ├── main.js │   ├── pages │   │   ├── dapps │   │   ├── setting │   │   └── wallet │   └── route │   ├── index.js │   ├── main.js │   └── tabs.js ├── build.js ├── bundle │   ├── android │   │   ├── app │   │   └── wallet │   └── ios │   ├── app │   └── wallet ├── index.js ├── ios │   ├── Podfile │   ├── Podfile.lock │   ├── Pods │   │   ├── Alamofire │   │   ├── DoubleConversion │   │   ├── Folly │   │   ├── Headers │   │   ├── Local\ Podspecs │   │   ├── Manifest.lock │   │   ├── Pods.xcodeproj │   │   ├── SSZipArchive │   │   ├── Target\ Support\ Files │   │   ├── boost-for-react-native │   │   └── glog │   ├── build │   │   ├── Build │   │   ├── Index │   │   ├── Logs │   │   ├── ModuleCache.noindex │   │   └── info.plist │   ├── qoswallet │   │   ├── AppDelegate.swift │   │   ├── Assets.xcassets │   │   ├── Base.lproj │   │   ├── Common.swift │   │   ├── Info.plist │   │   ├── Podfile │   │   ├── RNBridgeModule.m │   │   ├── RNBridgeModule.swift │   │   ├── ReactNativeBridge.swift │   │   ├── ReactViewController.swift │   │   ├── ViewController.swift │   │   ├── localModuleConfig.plist │   │   └── qoswallet-Bridging-Header.h │   ├── qoswallet.xcodeproj │   │   ├── project.pbxproj │   │   └── xcuserdata │   ├── qoswallet.xcworkspace │   │   ├── contents.xcworkspacedata │   │   ├── xcshareddata │   │   └── xcuserdata │   ├── qoswalletTests │   │   ├── Info.plist │   │   └── qoswalletTests.swift │   └── qoswalletUITests │   ├── Info.plist │   └── qoswalletUITests.swift ├── package.json ├── src │   ├── components │   │   ├── base.js │   │   └── home │   ├── images │   │   └── common │   ├── main.js │   ├── modals │   │   └── about.js │   ├── pages │   │   ├── detail.js │   │   ├── home.js │   │   ├── setting.js │   │   └── settingdetail.js │   └── route.js ├── tree.md ├── wallet.js └── yarn.lock

51 directories, 42 files