├── .gitignore ├── .metadata ├── README.md ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── ic_launcher-playstore.png │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── bookie │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── splash_screen.png │ │ │ ├── drawable-mdpi │ │ │ └── splash_screen.png │ │ │ ├── drawable-xhdpi │ │ │ └── splash_screen.png │ │ │ ├── drawable-xxhdpi │ │ │ └── splash_screen.png │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ ├── launch_background.xml │ │ │ ├── logo.png │ │ │ └── splash_screen.png │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties ├── settings.gradle └── settings_aar.gradle ├── fonts ├── KaushanScript-Regular.ttf └── SourceSansPro-Regular.ttf ├── images ├── connection_lost.png ├── logo.png ├── no_downloads.png ├── no_favourites.png └── no_search.png ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── Runner │ ├── AppDelegate.swift │ ├── AppIcon.appiconset │ ├── 1024.png │ ├── 114.png │ ├── 120.png │ ├── 180.png │ ├── 29.png │ ├── 40.png │ ├── 57.png │ ├── 58.png │ ├── 60.png │ ├── 80.png │ ├── 87.png │ └── Contents.json │ ├── Assets.xcassets │ └── LaunchImage.imageset │ │ ├── Contents.json │ │ ├── LaunchImage.png │ │ ├── LaunchImage@2x.png │ │ ├── LaunchImage@3x.png │ │ └── README.md │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── Runner-Bridging-Header.h ├── lib ├── components │ ├── book_card.dart │ ├── grid_builder.dart │ ├── home_list.dart │ ├── list_builder.dart │ └── rounded_button.dart ├── constants.dart ├── main.dart ├── models │ ├── download_helper.dart │ ├── error_handling.dart │ ├── favourites_helper.dart │ ├── free_books.dart │ ├── get_books.dart │ ├── network_helper.dart │ └── provider.dart └── screens │ ├── book_reader.dart │ ├── details_screen.dart │ ├── download_screen.dart │ ├── home.dart │ ├── home_screen.dart │ ├── search_screen.dart │ ├── setting_screen.dart │ ├── store_screen.dart │ └── view_more.dart ├── pubspec.lock ├── pubspec.yaml ├── ss ├── dark1.png ├── dark2.png ├── dark3.png ├── dark4.png ├── light1.png ├── light2.png ├── light3.png ├── light4.png └── ls.jpg └── test └── widget_test.dart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/.metadata -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/README.md -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/android/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/bookie/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/android/app/src/main/kotlin/com/example/bookie/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/splash_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/android/app/src/main/res/drawable-hdpi/splash_screen.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/splash_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/android/app/src/main/res/drawable-mdpi/splash_screen.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/splash_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/android/app/src/main/res/drawable-xhdpi/splash_screen.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/splash_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/android/app/src/main/res/drawable-xxhdpi/splash_screen.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/android/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/android/app/src/main/res/drawable/logo.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/splash_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/android/app/src/main/res/drawable/splash_screen.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /android/settings_aar.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/android/settings_aar.gradle -------------------------------------------------------------------------------- /fonts/KaushanScript-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/fonts/KaushanScript-Regular.ttf -------------------------------------------------------------------------------- /fonts/SourceSansPro-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/fonts/SourceSansPro-Regular.ttf -------------------------------------------------------------------------------- /images/connection_lost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/images/connection_lost.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/no_downloads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/images/no_downloads.png -------------------------------------------------------------------------------- /images/no_favourites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/images/no_favourites.png -------------------------------------------------------------------------------- /images/no_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/images/no_search.png -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/ios/Runner/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /ios/Runner/AppIcon.appiconset/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/ios/Runner/AppIcon.appiconset/114.png -------------------------------------------------------------------------------- /ios/Runner/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/ios/Runner/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /ios/Runner/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/ios/Runner/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /ios/Runner/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/ios/Runner/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /ios/Runner/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/ios/Runner/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /ios/Runner/AppIcon.appiconset/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/ios/Runner/AppIcon.appiconset/57.png -------------------------------------------------------------------------------- /ios/Runner/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/ios/Runner/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /ios/Runner/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/ios/Runner/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /ios/Runner/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/ios/Runner/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /ios/Runner/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/ios/Runner/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /ios/Runner/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/ios/Runner/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /lib/components/book_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/lib/components/book_card.dart -------------------------------------------------------------------------------- /lib/components/grid_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/lib/components/grid_builder.dart -------------------------------------------------------------------------------- /lib/components/home_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/lib/components/home_list.dart -------------------------------------------------------------------------------- /lib/components/list_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/lib/components/list_builder.dart -------------------------------------------------------------------------------- /lib/components/rounded_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/lib/components/rounded_button.dart -------------------------------------------------------------------------------- /lib/constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/lib/constants.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/models/download_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/lib/models/download_helper.dart -------------------------------------------------------------------------------- /lib/models/error_handling.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/lib/models/error_handling.dart -------------------------------------------------------------------------------- /lib/models/favourites_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/lib/models/favourites_helper.dart -------------------------------------------------------------------------------- /lib/models/free_books.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/lib/models/free_books.dart -------------------------------------------------------------------------------- /lib/models/get_books.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/lib/models/get_books.dart -------------------------------------------------------------------------------- /lib/models/network_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/lib/models/network_helper.dart -------------------------------------------------------------------------------- /lib/models/provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/lib/models/provider.dart -------------------------------------------------------------------------------- /lib/screens/book_reader.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/lib/screens/book_reader.dart -------------------------------------------------------------------------------- /lib/screens/details_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/lib/screens/details_screen.dart -------------------------------------------------------------------------------- /lib/screens/download_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/lib/screens/download_screen.dart -------------------------------------------------------------------------------- /lib/screens/home.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/lib/screens/home.dart -------------------------------------------------------------------------------- /lib/screens/home_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/lib/screens/home_screen.dart -------------------------------------------------------------------------------- /lib/screens/search_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/lib/screens/search_screen.dart -------------------------------------------------------------------------------- /lib/screens/setting_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/lib/screens/setting_screen.dart -------------------------------------------------------------------------------- /lib/screens/store_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/lib/screens/store_screen.dart -------------------------------------------------------------------------------- /lib/screens/view_more.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/lib/screens/view_more.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /ss/dark1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/ss/dark1.png -------------------------------------------------------------------------------- /ss/dark2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/ss/dark2.png -------------------------------------------------------------------------------- /ss/dark3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/ss/dark3.png -------------------------------------------------------------------------------- /ss/dark4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/ss/dark4.png -------------------------------------------------------------------------------- /ss/light1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/ss/light1.png -------------------------------------------------------------------------------- /ss/light2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/ss/light2.png -------------------------------------------------------------------------------- /ss/light3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/ss/light3.png -------------------------------------------------------------------------------- /ss/light4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/ss/light4.png -------------------------------------------------------------------------------- /ss/ls.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/ss/ls.jpg -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-ifeanyi/bookie_app/HEAD/test/widget_test.dart --------------------------------------------------------------------------------