├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .metadata ├── .travis.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── HEAD ├── LICENSE ├── README.md ├── analysis_options.yaml ├── config ├── description ├── example ├── .gitignore ├── .metadata ├── README.md ├── analysis_options.yaml ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── example │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-v21 │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── launcher_icon.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── launcher_icon.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── launcher_icon.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── launcher_icon.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── launcher_icon.png │ │ │ │ ├── values-night │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── assets │ ├── app_icon.png │ ├── github.svg │ ├── logo.svg │ └── playstore.svg ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ ├── Release.xcconfig │ │ └── ephemeral │ │ │ ├── flutter_lldb_helper.py │ │ │ └── flutter_lldbinit │ ├── Podfile │ ├── Podfile.lock │ ├── 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 │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ ├── Contents.json │ │ ├── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── LaunchImage.png │ │ ├── LaunchImage@2x.png │ │ ├── LaunchImage@3x.png │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h ├── lib │ └── main.dart ├── linux │ ├── .gitignore │ ├── CMakeLists.txt │ ├── flutter │ │ ├── CMakeLists.txt │ │ ├── generated_plugin_registrant.cc │ │ ├── generated_plugin_registrant.h │ │ └── generated_plugins.cmake │ ├── main.cc │ ├── my_application.cc │ └── my_application.h ├── macos │ ├── .gitignore │ ├── Flutter │ │ ├── Flutter-Debug.xcconfig │ │ ├── Flutter-Release.xcconfig │ │ └── GeneratedPluginRegistrant.swift │ ├── Podfile │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── app_icon_1024.png │ │ │ ├── app_icon_128.png │ │ │ ├── app_icon_16.png │ │ │ ├── app_icon_256.png │ │ │ ├── app_icon_32.png │ │ │ ├── app_icon_512.png │ │ │ └── app_icon_64.png │ │ ├── Base.lproj │ │ └── MainMenu.xib │ │ ├── Configs │ │ ├── AppInfo.xcconfig │ │ ├── Debug.xcconfig │ │ ├── Release.xcconfig │ │ └── Warnings.xcconfig │ │ ├── DebugProfile.entitlements │ │ ├── Info.plist │ │ ├── MainFlutterWindow.swift │ │ └── Release.entitlements ├── pubspec.lock ├── pubspec.yaml ├── test │ └── widget_test.dart └── windows │ ├── .gitignore │ ├── CMakeLists.txt │ ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake │ └── runner │ ├── CMakeLists.txt │ ├── Runner.rc │ ├── flutter_window.cpp │ ├── flutter_window.h │ ├── main.cpp │ ├── resource.h │ ├── resources │ └── app_icon.ico │ ├── runner.exe.manifest │ ├── utils.cpp │ ├── utils.h │ ├── win32_window.cpp │ └── win32_window.h ├── icons ├── dribble.png ├── facebook.png ├── google.png ├── line.png ├── linkedin.png ├── pinterest.png ├── slack.png ├── twitter.png ├── wechat.png ├── whatsapp.png └── youtube.png ├── lib ├── colors │ ├── gf_color.dart │ ├── gf_element_color.dart │ ├── gf_emotion_color.dart │ ├── gf_food_color.dart │ ├── gf_kids_education_color.dart │ ├── gf_luxury_color.dart │ ├── gf_medical_healthcare_color.dart │ ├── gf_social_color.dart │ └── gf_space_color.dart ├── components │ ├── accordion │ │ └── gf_accordion.dart │ ├── alert │ │ └── gf_alert.dart │ ├── animation │ │ └── gf_animation.dart │ ├── appbar │ │ └── gf_appbar.dart │ ├── avatar │ │ └── gf_avatar.dart │ ├── badge │ │ ├── gf_badge.dart │ │ ├── gf_button_badge.dart │ │ └── gf_icon_badge.dart │ ├── border │ │ ├── gf_border.dart │ │ └── gf_dashed_border.dart │ ├── bottom_sheet │ │ └── gf_bottom_sheet.dart │ ├── button │ │ ├── gf_button.dart │ │ ├── gf_button_bar.dart │ │ ├── gf_icon_button.dart │ │ └── gf_social_button.dart │ ├── card │ │ └── gf_card.dart │ ├── carousel │ │ ├── gf_carousel.dart │ │ └── gf_items_carousel.dart │ ├── checkbox │ │ └── gf_checkbox.dart │ ├── checkbox_list_tile │ │ └── gf_checkbox_list_tile.dart │ ├── drawer │ │ ├── gf_drawer.dart │ │ └── gf_drawer_header.dart │ ├── dropdown │ │ ├── gf_dropdown.dart │ │ └── gf_multiselect.dart │ ├── floating_widget │ │ └── gf_floating_widget.dart │ ├── form │ │ ├── form_field │ │ │ ├── decorations │ │ │ │ └── gf_formfield_decoration.dart │ │ │ ├── gf_formhandler_widget.dart │ │ │ ├── validators │ │ │ │ └── validators.dart │ │ │ └── widgets │ │ │ │ ├── gf_datepicker.dart │ │ │ │ ├── gf_form_field.dart │ │ │ │ ├── gf_formdropdown.dart │ │ │ │ ├── gf_formradiobutton.dart │ │ │ │ ├── gf_multichoicechip.dart │ │ │ │ ├── gf_multiselectcheckbox.dart │ │ │ │ ├── gf_questionwidget.dart │ │ │ │ ├── gf_timepicker.dart │ │ │ │ └── providers │ │ │ │ ├── gf_datepickerprovider.dart │ │ │ │ ├── gf_formdropdownprovider.dart │ │ │ │ ├── gf_formfieldprovider.dart │ │ │ │ ├── gf_multicheckboxselectionprovider.dart │ │ │ │ ├── gf_multichipselectionprovider.dart │ │ │ │ ├── gf_questionbuttonprovider.dart │ │ │ │ ├── gf_radioprovider.dart │ │ │ │ └── gf_timepickerprovider.dart │ │ ├── gf_form.dart │ │ └── gf_form_provider.dart │ ├── image │ │ └── gf_image_overlay.dart │ ├── intro_screen │ │ ├── gf_intro_screen.dart │ │ └── gf_intro_screen_bottom_navigation_bar.dart │ ├── list_tile │ │ └── gf_list_tile.dart │ ├── loader │ │ └── gf_loader.dart │ ├── progress_bar │ │ └── gf_progress_bar.dart │ ├── radio │ │ └── gf_radio.dart │ ├── radio_list_tile │ │ └── gf_radio_list_tile.dart │ ├── rating │ │ └── gf_rating.dart │ ├── search_bar │ │ └── gf_search_bar.dart │ ├── shimmer │ │ └── gf_shimmer.dart │ ├── sticky_header │ │ ├── gf_sticky_header.dart │ │ ├── gf_sticky_header_builder.dart │ │ └── render_gf_sticky_header.dart │ ├── tabs │ │ ├── gf_segment_tabs.dart │ │ ├── gf_tabbar.dart │ │ ├── gf_tabbar_view.dart │ │ └── gf_tabs.dart │ ├── text_field │ │ ├── gf_text_field.dart │ │ ├── gf_text_field_pill.dart │ │ ├── gf_text_field_rounded.dart │ │ └── gf_text_field_squared.dart │ ├── toast │ │ └── gf_toast.dart │ ├── toggle │ │ └── gf_toggle.dart │ └── typography │ │ └── gf_typography.dart ├── direction │ └── gf_shimmer_direction.dart ├── getwidget.dart ├── position │ ├── gf_badge_position.dart │ ├── gf_position.dart │ └── gf_toast_position.dart ├── shape │ ├── gf_avatar_shape.dart │ ├── gf_badge_shape.dart │ ├── gf_button_shape.dart │ ├── gf_icon_button_shape.dart │ └── gf_textfield_shape.dart ├── size │ └── gf_size.dart └── types │ ├── gf_alert_type.dart │ ├── gf_animation_type.dart │ ├── gf_border_type.dart │ ├── gf_button_type.dart │ ├── gf_checkbox_type.dart │ ├── gf_form_field_type.dart │ ├── gf_loader_type.dart │ ├── gf_progress_type.dart │ ├── gf_radio_type.dart │ ├── gf_social_type.dart │ ├── gf_toast_type.dart │ ├── gf_toggle_type.dart │ └── gf_typography_type.dart ├── pubspec.lock ├── pubspec.yaml └── test ├── accordion_test.dart ├── alert_test.dart ├── animation_test.dart ├── appbar_test.dart ├── avatar_test.dart ├── badge_test.dart ├── border_test.dart ├── bottom_sheet_test.dart ├── button_badge_test.dart ├── button_test.dart ├── card_test.dart ├── carousel_test.dart ├── checkbox_list_tile_test.dart ├── checkbox_test.dart ├── dropdown_test.dart ├── icon_badge_test.dart ├── icon_button_test.dart ├── image_test.dart ├── intro_screen_test.dart ├── items_carousel_test.dart ├── list_tile_test.dart ├── loader_test.dart ├── radio_list_tile_test.dart ├── radio_test.dart ├── rating_test.dart ├── searchbar_test.dart ├── segment_tabs_test.dart ├── shimmer_test.dart ├── social_button_test.dart ├── sticky_header_test.dart ├── tabbar_test.dart ├── tabbarview_test.dart ├── tabs_test.dart ├── toggle_test.dart └── typography_test.dart /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/.metadata -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/config -------------------------------------------------------------------------------- /description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/description -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/.metadata -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/README.md -------------------------------------------------------------------------------- /example/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/analysis_options.yaml -------------------------------------------------------------------------------- /example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/android/.gitignore -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/kotlin/com/example/example/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/android/app/src/main/kotlin/com/example/example/MainActivity.kt -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/android/app/src/main/res/mipmap-hdpi/launcher_icon.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/android/app/src/main/res/mipmap-mdpi/launcher_icon.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/android/app/src/main/res/mipmap-xhdpi/launcher_icon.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/launcher_icon.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/launcher_icon.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/assets/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/assets/app_icon.png -------------------------------------------------------------------------------- /example/assets/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/assets/github.svg -------------------------------------------------------------------------------- /example/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/assets/logo.svg -------------------------------------------------------------------------------- /example/assets/playstore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/assets/playstore.svg -------------------------------------------------------------------------------- /example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/ios/.gitignore -------------------------------------------------------------------------------- /example/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /example/ios/Flutter/ephemeral/flutter_lldb_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/ios/Flutter/ephemeral/flutter_lldb_helper.py -------------------------------------------------------------------------------- /example/ios/Flutter/ephemeral/flutter_lldbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/ios/Flutter/ephemeral/flutter_lldbinit -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/ios/Runner/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/ios/Runner/Assets.xcassets/README.md -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/lib/main.dart -------------------------------------------------------------------------------- /example/linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /example/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/linux/CMakeLists.txt -------------------------------------------------------------------------------- /example/linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /example/linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /example/linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /example/linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /example/linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/linux/main.cc -------------------------------------------------------------------------------- /example/linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/linux/my_application.cc -------------------------------------------------------------------------------- /example/linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/linux/my_application.h -------------------------------------------------------------------------------- /example/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/macos/.gitignore -------------------------------------------------------------------------------- /example/macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/macos/Flutter/Flutter-Debug.xcconfig -------------------------------------------------------------------------------- /example/macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/macos/Flutter/Flutter-Release.xcconfig -------------------------------------------------------------------------------- /example/macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /example/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/macos/Podfile -------------------------------------------------------------------------------- /example/macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /example/macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /example/macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /example/macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /example/macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /example/macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /example/macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /example/macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /example/macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/macos/Runner/Info.plist -------------------------------------------------------------------------------- /example/macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /example/macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /example/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/pubspec.lock -------------------------------------------------------------------------------- /example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/pubspec.yaml -------------------------------------------------------------------------------- /example/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/test/widget_test.dart -------------------------------------------------------------------------------- /example/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/windows/.gitignore -------------------------------------------------------------------------------- /example/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/windows/CMakeLists.txt -------------------------------------------------------------------------------- /example/windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /example/windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /example/windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /example/windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /example/windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /example/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/windows/runner/Runner.rc -------------------------------------------------------------------------------- /example/windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /example/windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /example/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/windows/runner/main.cpp -------------------------------------------------------------------------------- /example/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/windows/runner/resource.h -------------------------------------------------------------------------------- /example/windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /example/windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /example/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/windows/runner/utils.cpp -------------------------------------------------------------------------------- /example/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/windows/runner/utils.h -------------------------------------------------------------------------------- /example/windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /example/windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/example/windows/runner/win32_window.h -------------------------------------------------------------------------------- /icons/dribble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/icons/dribble.png -------------------------------------------------------------------------------- /icons/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/icons/facebook.png -------------------------------------------------------------------------------- /icons/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/icons/google.png -------------------------------------------------------------------------------- /icons/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/icons/line.png -------------------------------------------------------------------------------- /icons/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/icons/linkedin.png -------------------------------------------------------------------------------- /icons/pinterest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/icons/pinterest.png -------------------------------------------------------------------------------- /icons/slack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/icons/slack.png -------------------------------------------------------------------------------- /icons/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/icons/twitter.png -------------------------------------------------------------------------------- /icons/wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/icons/wechat.png -------------------------------------------------------------------------------- /icons/whatsapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/icons/whatsapp.png -------------------------------------------------------------------------------- /icons/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/icons/youtube.png -------------------------------------------------------------------------------- /lib/colors/gf_color.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/colors/gf_color.dart -------------------------------------------------------------------------------- /lib/colors/gf_element_color.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/colors/gf_element_color.dart -------------------------------------------------------------------------------- /lib/colors/gf_emotion_color.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/colors/gf_emotion_color.dart -------------------------------------------------------------------------------- /lib/colors/gf_food_color.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/colors/gf_food_color.dart -------------------------------------------------------------------------------- /lib/colors/gf_kids_education_color.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/colors/gf_kids_education_color.dart -------------------------------------------------------------------------------- /lib/colors/gf_luxury_color.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/colors/gf_luxury_color.dart -------------------------------------------------------------------------------- /lib/colors/gf_medical_healthcare_color.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/colors/gf_medical_healthcare_color.dart -------------------------------------------------------------------------------- /lib/colors/gf_social_color.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/colors/gf_social_color.dart -------------------------------------------------------------------------------- /lib/colors/gf_space_color.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/colors/gf_space_color.dart -------------------------------------------------------------------------------- /lib/components/accordion/gf_accordion.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/accordion/gf_accordion.dart -------------------------------------------------------------------------------- /lib/components/alert/gf_alert.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/alert/gf_alert.dart -------------------------------------------------------------------------------- /lib/components/animation/gf_animation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/animation/gf_animation.dart -------------------------------------------------------------------------------- /lib/components/appbar/gf_appbar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/appbar/gf_appbar.dart -------------------------------------------------------------------------------- /lib/components/avatar/gf_avatar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/avatar/gf_avatar.dart -------------------------------------------------------------------------------- /lib/components/badge/gf_badge.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/badge/gf_badge.dart -------------------------------------------------------------------------------- /lib/components/badge/gf_button_badge.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/badge/gf_button_badge.dart -------------------------------------------------------------------------------- /lib/components/badge/gf_icon_badge.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/badge/gf_icon_badge.dart -------------------------------------------------------------------------------- /lib/components/border/gf_border.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/border/gf_border.dart -------------------------------------------------------------------------------- /lib/components/border/gf_dashed_border.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/border/gf_dashed_border.dart -------------------------------------------------------------------------------- /lib/components/bottom_sheet/gf_bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/bottom_sheet/gf_bottom_sheet.dart -------------------------------------------------------------------------------- /lib/components/button/gf_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/button/gf_button.dart -------------------------------------------------------------------------------- /lib/components/button/gf_button_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/button/gf_button_bar.dart -------------------------------------------------------------------------------- /lib/components/button/gf_icon_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/button/gf_icon_button.dart -------------------------------------------------------------------------------- /lib/components/button/gf_social_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/button/gf_social_button.dart -------------------------------------------------------------------------------- /lib/components/card/gf_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/card/gf_card.dart -------------------------------------------------------------------------------- /lib/components/carousel/gf_carousel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/carousel/gf_carousel.dart -------------------------------------------------------------------------------- /lib/components/carousel/gf_items_carousel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/carousel/gf_items_carousel.dart -------------------------------------------------------------------------------- /lib/components/checkbox/gf_checkbox.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/checkbox/gf_checkbox.dart -------------------------------------------------------------------------------- /lib/components/checkbox_list_tile/gf_checkbox_list_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/checkbox_list_tile/gf_checkbox_list_tile.dart -------------------------------------------------------------------------------- /lib/components/drawer/gf_drawer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/drawer/gf_drawer.dart -------------------------------------------------------------------------------- /lib/components/drawer/gf_drawer_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/drawer/gf_drawer_header.dart -------------------------------------------------------------------------------- /lib/components/dropdown/gf_dropdown.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/dropdown/gf_dropdown.dart -------------------------------------------------------------------------------- /lib/components/dropdown/gf_multiselect.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/dropdown/gf_multiselect.dart -------------------------------------------------------------------------------- /lib/components/floating_widget/gf_floating_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/floating_widget/gf_floating_widget.dart -------------------------------------------------------------------------------- /lib/components/form/form_field/decorations/gf_formfield_decoration.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/form/form_field/decorations/gf_formfield_decoration.dart -------------------------------------------------------------------------------- /lib/components/form/form_field/gf_formhandler_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/form/form_field/gf_formhandler_widget.dart -------------------------------------------------------------------------------- /lib/components/form/form_field/validators/validators.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/form/form_field/validators/validators.dart -------------------------------------------------------------------------------- /lib/components/form/form_field/widgets/gf_datepicker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/form/form_field/widgets/gf_datepicker.dart -------------------------------------------------------------------------------- /lib/components/form/form_field/widgets/gf_form_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/form/form_field/widgets/gf_form_field.dart -------------------------------------------------------------------------------- /lib/components/form/form_field/widgets/gf_formdropdown.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/form/form_field/widgets/gf_formdropdown.dart -------------------------------------------------------------------------------- /lib/components/form/form_field/widgets/gf_formradiobutton.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/form/form_field/widgets/gf_formradiobutton.dart -------------------------------------------------------------------------------- /lib/components/form/form_field/widgets/gf_multichoicechip.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/form/form_field/widgets/gf_multichoicechip.dart -------------------------------------------------------------------------------- /lib/components/form/form_field/widgets/gf_multiselectcheckbox.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/form/form_field/widgets/gf_multiselectcheckbox.dart -------------------------------------------------------------------------------- /lib/components/form/form_field/widgets/gf_questionwidget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/form/form_field/widgets/gf_questionwidget.dart -------------------------------------------------------------------------------- /lib/components/form/form_field/widgets/gf_timepicker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/form/form_field/widgets/gf_timepicker.dart -------------------------------------------------------------------------------- /lib/components/form/form_field/widgets/providers/gf_datepickerprovider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/form/form_field/widgets/providers/gf_datepickerprovider.dart -------------------------------------------------------------------------------- /lib/components/form/form_field/widgets/providers/gf_formdropdownprovider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/form/form_field/widgets/providers/gf_formdropdownprovider.dart -------------------------------------------------------------------------------- /lib/components/form/form_field/widgets/providers/gf_formfieldprovider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/form/form_field/widgets/providers/gf_formfieldprovider.dart -------------------------------------------------------------------------------- /lib/components/form/form_field/widgets/providers/gf_multicheckboxselectionprovider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/form/form_field/widgets/providers/gf_multicheckboxselectionprovider.dart -------------------------------------------------------------------------------- /lib/components/form/form_field/widgets/providers/gf_multichipselectionprovider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/form/form_field/widgets/providers/gf_multichipselectionprovider.dart -------------------------------------------------------------------------------- /lib/components/form/form_field/widgets/providers/gf_questionbuttonprovider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/form/form_field/widgets/providers/gf_questionbuttonprovider.dart -------------------------------------------------------------------------------- /lib/components/form/form_field/widgets/providers/gf_radioprovider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/form/form_field/widgets/providers/gf_radioprovider.dart -------------------------------------------------------------------------------- /lib/components/form/form_field/widgets/providers/gf_timepickerprovider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/form/form_field/widgets/providers/gf_timepickerprovider.dart -------------------------------------------------------------------------------- /lib/components/form/gf_form.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/form/gf_form.dart -------------------------------------------------------------------------------- /lib/components/form/gf_form_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/form/gf_form_provider.dart -------------------------------------------------------------------------------- /lib/components/image/gf_image_overlay.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/image/gf_image_overlay.dart -------------------------------------------------------------------------------- /lib/components/intro_screen/gf_intro_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/intro_screen/gf_intro_screen.dart -------------------------------------------------------------------------------- /lib/components/intro_screen/gf_intro_screen_bottom_navigation_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/intro_screen/gf_intro_screen_bottom_navigation_bar.dart -------------------------------------------------------------------------------- /lib/components/list_tile/gf_list_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/list_tile/gf_list_tile.dart -------------------------------------------------------------------------------- /lib/components/loader/gf_loader.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/loader/gf_loader.dart -------------------------------------------------------------------------------- /lib/components/progress_bar/gf_progress_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/progress_bar/gf_progress_bar.dart -------------------------------------------------------------------------------- /lib/components/radio/gf_radio.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/radio/gf_radio.dart -------------------------------------------------------------------------------- /lib/components/radio_list_tile/gf_radio_list_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/radio_list_tile/gf_radio_list_tile.dart -------------------------------------------------------------------------------- /lib/components/rating/gf_rating.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/rating/gf_rating.dart -------------------------------------------------------------------------------- /lib/components/search_bar/gf_search_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/search_bar/gf_search_bar.dart -------------------------------------------------------------------------------- /lib/components/shimmer/gf_shimmer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/shimmer/gf_shimmer.dart -------------------------------------------------------------------------------- /lib/components/sticky_header/gf_sticky_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/sticky_header/gf_sticky_header.dart -------------------------------------------------------------------------------- /lib/components/sticky_header/gf_sticky_header_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/sticky_header/gf_sticky_header_builder.dart -------------------------------------------------------------------------------- /lib/components/sticky_header/render_gf_sticky_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/sticky_header/render_gf_sticky_header.dart -------------------------------------------------------------------------------- /lib/components/tabs/gf_segment_tabs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/tabs/gf_segment_tabs.dart -------------------------------------------------------------------------------- /lib/components/tabs/gf_tabbar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/tabs/gf_tabbar.dart -------------------------------------------------------------------------------- /lib/components/tabs/gf_tabbar_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/tabs/gf_tabbar_view.dart -------------------------------------------------------------------------------- /lib/components/tabs/gf_tabs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/tabs/gf_tabs.dart -------------------------------------------------------------------------------- /lib/components/text_field/gf_text_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/text_field/gf_text_field.dart -------------------------------------------------------------------------------- /lib/components/text_field/gf_text_field_pill.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/text_field/gf_text_field_pill.dart -------------------------------------------------------------------------------- /lib/components/text_field/gf_text_field_rounded.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/text_field/gf_text_field_rounded.dart -------------------------------------------------------------------------------- /lib/components/text_field/gf_text_field_squared.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/text_field/gf_text_field_squared.dart -------------------------------------------------------------------------------- /lib/components/toast/gf_toast.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/toast/gf_toast.dart -------------------------------------------------------------------------------- /lib/components/toggle/gf_toggle.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/toggle/gf_toggle.dart -------------------------------------------------------------------------------- /lib/components/typography/gf_typography.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/components/typography/gf_typography.dart -------------------------------------------------------------------------------- /lib/direction/gf_shimmer_direction.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/direction/gf_shimmer_direction.dart -------------------------------------------------------------------------------- /lib/getwidget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/getwidget.dart -------------------------------------------------------------------------------- /lib/position/gf_badge_position.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/position/gf_badge_position.dart -------------------------------------------------------------------------------- /lib/position/gf_position.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/position/gf_position.dart -------------------------------------------------------------------------------- /lib/position/gf_toast_position.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/position/gf_toast_position.dart -------------------------------------------------------------------------------- /lib/shape/gf_avatar_shape.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/shape/gf_avatar_shape.dart -------------------------------------------------------------------------------- /lib/shape/gf_badge_shape.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/shape/gf_badge_shape.dart -------------------------------------------------------------------------------- /lib/shape/gf_button_shape.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/shape/gf_button_shape.dart -------------------------------------------------------------------------------- /lib/shape/gf_icon_button_shape.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/shape/gf_icon_button_shape.dart -------------------------------------------------------------------------------- /lib/shape/gf_textfield_shape.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/shape/gf_textfield_shape.dart -------------------------------------------------------------------------------- /lib/size/gf_size.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/size/gf_size.dart -------------------------------------------------------------------------------- /lib/types/gf_alert_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/types/gf_alert_type.dart -------------------------------------------------------------------------------- /lib/types/gf_animation_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/types/gf_animation_type.dart -------------------------------------------------------------------------------- /lib/types/gf_border_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/types/gf_border_type.dart -------------------------------------------------------------------------------- /lib/types/gf_button_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/types/gf_button_type.dart -------------------------------------------------------------------------------- /lib/types/gf_checkbox_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/types/gf_checkbox_type.dart -------------------------------------------------------------------------------- /lib/types/gf_form_field_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/types/gf_form_field_type.dart -------------------------------------------------------------------------------- /lib/types/gf_loader_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/types/gf_loader_type.dart -------------------------------------------------------------------------------- /lib/types/gf_progress_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/types/gf_progress_type.dart -------------------------------------------------------------------------------- /lib/types/gf_radio_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/types/gf_radio_type.dart -------------------------------------------------------------------------------- /lib/types/gf_social_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/types/gf_social_type.dart -------------------------------------------------------------------------------- /lib/types/gf_toast_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/types/gf_toast_type.dart -------------------------------------------------------------------------------- /lib/types/gf_toggle_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/types/gf_toggle_type.dart -------------------------------------------------------------------------------- /lib/types/gf_typography_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/lib/types/gf_typography_type.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/accordion_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/test/accordion_test.dart -------------------------------------------------------------------------------- /test/alert_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/test/alert_test.dart -------------------------------------------------------------------------------- /test/animation_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/test/animation_test.dart -------------------------------------------------------------------------------- /test/appbar_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/test/appbar_test.dart -------------------------------------------------------------------------------- /test/avatar_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/test/avatar_test.dart -------------------------------------------------------------------------------- /test/badge_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/test/badge_test.dart -------------------------------------------------------------------------------- /test/border_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/test/border_test.dart -------------------------------------------------------------------------------- /test/bottom_sheet_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/test/bottom_sheet_test.dart -------------------------------------------------------------------------------- /test/button_badge_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/test/button_badge_test.dart -------------------------------------------------------------------------------- /test/button_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/test/button_test.dart -------------------------------------------------------------------------------- /test/card_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/test/card_test.dart -------------------------------------------------------------------------------- /test/carousel_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/test/carousel_test.dart -------------------------------------------------------------------------------- /test/checkbox_list_tile_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/test/checkbox_list_tile_test.dart -------------------------------------------------------------------------------- /test/checkbox_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/test/checkbox_test.dart -------------------------------------------------------------------------------- /test/dropdown_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/test/dropdown_test.dart -------------------------------------------------------------------------------- /test/icon_badge_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/test/icon_badge_test.dart -------------------------------------------------------------------------------- /test/icon_button_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/test/icon_button_test.dart -------------------------------------------------------------------------------- /test/image_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/test/image_test.dart -------------------------------------------------------------------------------- /test/intro_screen_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/test/intro_screen_test.dart -------------------------------------------------------------------------------- /test/items_carousel_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/test/items_carousel_test.dart -------------------------------------------------------------------------------- /test/list_tile_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/test/list_tile_test.dart -------------------------------------------------------------------------------- /test/loader_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/test/loader_test.dart -------------------------------------------------------------------------------- /test/radio_list_tile_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/test/radio_list_tile_test.dart -------------------------------------------------------------------------------- /test/radio_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/test/radio_test.dart -------------------------------------------------------------------------------- /test/rating_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/test/rating_test.dart -------------------------------------------------------------------------------- /test/searchbar_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/test/searchbar_test.dart -------------------------------------------------------------------------------- /test/segment_tabs_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/test/segment_tabs_test.dart -------------------------------------------------------------------------------- /test/shimmer_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/test/shimmer_test.dart -------------------------------------------------------------------------------- /test/social_button_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/test/social_button_test.dart -------------------------------------------------------------------------------- /test/sticky_header_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/test/sticky_header_test.dart -------------------------------------------------------------------------------- /test/tabbar_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/test/tabbar_test.dart -------------------------------------------------------------------------------- /test/tabbarview_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/test/tabbarview_test.dart -------------------------------------------------------------------------------- /test/tabs_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/test/tabs_test.dart -------------------------------------------------------------------------------- /test/toggle_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/test/toggle_test.dart -------------------------------------------------------------------------------- /test/typography_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionicfirebaseapp/getwidget/HEAD/test/typography_test.dart --------------------------------------------------------------------------------