├── .gitignore ├── .vscode └── launch.json ├── README.md ├── README ├── 1.jpg ├── 2.jpg ├── 3.jpg └── 4.jpg ├── flutter_weui_example ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── flutter_weui_example │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── assets │ ├── font-icon │ │ └── iconfont.ttf │ └── images │ │ ├── index-icon │ │ ├── icon_nav_feedback.png │ │ ├── icon_nav_form.png │ │ └── icon_nav_layout.png │ │ ├── loading.png │ │ └── right-icon.png ├── ios │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── 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 │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h ├── lib │ ├── components │ │ └── title.dart │ ├── layout │ │ └── sample.dart │ ├── main.dart │ ├── router │ │ └── index.dart │ └── views │ │ ├── actionsheet.dart │ │ ├── badge.dart │ │ ├── button.dart │ │ ├── call.dart │ │ ├── checkbox.dart │ │ ├── checklist.dart │ │ ├── collapse.dart │ │ ├── dialog.dart │ │ ├── drawer.dart │ │ ├── grid.dart │ │ ├── icon.dart │ │ ├── imagePreview.dart │ │ ├── index.dart │ │ ├── input.dart │ │ ├── loadmore.dart │ │ ├── noticeBar.dart │ │ ├── notify.dart │ │ ├── picker_view.dart │ │ ├── progress.dart │ │ ├── radio.dart │ │ ├── radiolist.dart │ │ ├── slider.dart │ │ ├── spin.dart │ │ ├── swipe.dart │ │ ├── switch.dart │ │ ├── tip.dart │ │ └── toast.dart └── pubspec.yaml └── weui ├── .gitignore ├── .metadata ├── .vscode └── launch.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── assets ├── font-icon │ └── iconfont.ttf └── images │ └── loading.png ├── ios └── Flutter │ └── flutter_export_environment.sh ├── lib ├── actionsheet │ ├── android_widget.dart │ ├── index.dart │ ├── ios_widget.dart │ └── utils.dart ├── animation │ ├── fade_in.dart │ ├── index.dart │ ├── rotating.dart │ └── scale.dart ├── badge │ └── index.dart ├── button │ └── index.dart ├── cell │ └── index.dart ├── check_list │ └── index.dart ├── checkbox │ └── index.dart ├── collapse │ └── index.dart ├── dialog │ ├── android_widget.dart │ ├── index.dart │ ├── ios_widget.dart │ └── layout_hoc.dart ├── drawer │ ├── drawer.dart │ └── index.dart ├── form │ └── index.dart ├── grid │ └── index.dart ├── icon │ └── index.dart ├── image_preview │ ├── index.dart │ └── preview_widget.dart ├── input │ └── index.dart ├── loadmore │ └── index.dart ├── notice_bar │ └── index.dart ├── notify │ ├── index.dart │ └── notify.dart ├── picker_view │ └── index.dart ├── progress │ └── index.dart ├── radio │ └── index.dart ├── radio_list │ └── index.dart ├── slider │ └── index.dart ├── spin │ └── index.dart ├── swipe │ └── index.dart ├── switch │ └── index.dart ├── theme │ └── index.dart ├── tip │ └── index.dart ├── toast │ ├── index.dart │ ├── info.dart │ └── toast.dart ├── utils.dart └── weui.dart └── pubspec.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/README.md -------------------------------------------------------------------------------- /README/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/README/1.jpg -------------------------------------------------------------------------------- /README/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/README/2.jpg -------------------------------------------------------------------------------- /README/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/README/3.jpg -------------------------------------------------------------------------------- /README/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/README/4.jpg -------------------------------------------------------------------------------- /flutter_weui_example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/.gitignore -------------------------------------------------------------------------------- /flutter_weui_example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/.metadata -------------------------------------------------------------------------------- /flutter_weui_example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/README.md -------------------------------------------------------------------------------- /flutter_weui_example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/android/app/build.gradle -------------------------------------------------------------------------------- /flutter_weui_example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /flutter_weui_example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /flutter_weui_example/android/app/src/main/kotlin/com/example/flutter_weui_example/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/android/app/src/main/kotlin/com/example/flutter_weui_example/MainActivity.kt -------------------------------------------------------------------------------- /flutter_weui_example/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /flutter_weui_example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /flutter_weui_example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /flutter_weui_example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /flutter_weui_example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /flutter_weui_example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /flutter_weui_example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /flutter_weui_example/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /flutter_weui_example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/android/build.gradle -------------------------------------------------------------------------------- /flutter_weui_example/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | 3 | android.enableR8=true 4 | -------------------------------------------------------------------------------- /flutter_weui_example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /flutter_weui_example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/android/settings.gradle -------------------------------------------------------------------------------- /flutter_weui_example/assets/font-icon/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/assets/font-icon/iconfont.ttf -------------------------------------------------------------------------------- /flutter_weui_example/assets/images/index-icon/icon_nav_feedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/assets/images/index-icon/icon_nav_feedback.png -------------------------------------------------------------------------------- /flutter_weui_example/assets/images/index-icon/icon_nav_form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/assets/images/index-icon/icon_nav_form.png -------------------------------------------------------------------------------- /flutter_weui_example/assets/images/index-icon/icon_nav_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/assets/images/index-icon/icon_nav_layout.png -------------------------------------------------------------------------------- /flutter_weui_example/assets/images/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/assets/images/loading.png -------------------------------------------------------------------------------- /flutter_weui_example/assets/images/right-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/assets/images/right-icon.png -------------------------------------------------------------------------------- /flutter_weui_example/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /flutter_weui_example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /flutter_weui_example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /flutter_weui_example/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /flutter_weui_example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /flutter_weui_example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /flutter_weui_example/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /flutter_weui_example/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /flutter_weui_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /flutter_weui_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /flutter_weui_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /flutter_weui_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /flutter_weui_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /flutter_weui_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /flutter_weui_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /flutter_weui_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /flutter_weui_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /flutter_weui_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /flutter_weui_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /flutter_weui_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /flutter_weui_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /flutter_weui_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /flutter_weui_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /flutter_weui_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /flutter_weui_example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /flutter_weui_example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /flutter_weui_example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /flutter_weui_example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /flutter_weui_example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /flutter_weui_example/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /flutter_weui_example/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /flutter_weui_example/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/ios/Runner/Info.plist -------------------------------------------------------------------------------- /flutter_weui_example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /flutter_weui_example/lib/components/title.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/lib/components/title.dart -------------------------------------------------------------------------------- /flutter_weui_example/lib/layout/sample.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/lib/layout/sample.dart -------------------------------------------------------------------------------- /flutter_weui_example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/lib/main.dart -------------------------------------------------------------------------------- /flutter_weui_example/lib/router/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/lib/router/index.dart -------------------------------------------------------------------------------- /flutter_weui_example/lib/views/actionsheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/lib/views/actionsheet.dart -------------------------------------------------------------------------------- /flutter_weui_example/lib/views/badge.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/lib/views/badge.dart -------------------------------------------------------------------------------- /flutter_weui_example/lib/views/button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/lib/views/button.dart -------------------------------------------------------------------------------- /flutter_weui_example/lib/views/call.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/lib/views/call.dart -------------------------------------------------------------------------------- /flutter_weui_example/lib/views/checkbox.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/lib/views/checkbox.dart -------------------------------------------------------------------------------- /flutter_weui_example/lib/views/checklist.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/lib/views/checklist.dart -------------------------------------------------------------------------------- /flutter_weui_example/lib/views/collapse.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/lib/views/collapse.dart -------------------------------------------------------------------------------- /flutter_weui_example/lib/views/dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/lib/views/dialog.dart -------------------------------------------------------------------------------- /flutter_weui_example/lib/views/drawer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/lib/views/drawer.dart -------------------------------------------------------------------------------- /flutter_weui_example/lib/views/grid.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/lib/views/grid.dart -------------------------------------------------------------------------------- /flutter_weui_example/lib/views/icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/lib/views/icon.dart -------------------------------------------------------------------------------- /flutter_weui_example/lib/views/imagePreview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/lib/views/imagePreview.dart -------------------------------------------------------------------------------- /flutter_weui_example/lib/views/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/lib/views/index.dart -------------------------------------------------------------------------------- /flutter_weui_example/lib/views/input.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/lib/views/input.dart -------------------------------------------------------------------------------- /flutter_weui_example/lib/views/loadmore.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/lib/views/loadmore.dart -------------------------------------------------------------------------------- /flutter_weui_example/lib/views/noticeBar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/lib/views/noticeBar.dart -------------------------------------------------------------------------------- /flutter_weui_example/lib/views/notify.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/lib/views/notify.dart -------------------------------------------------------------------------------- /flutter_weui_example/lib/views/picker_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/lib/views/picker_view.dart -------------------------------------------------------------------------------- /flutter_weui_example/lib/views/progress.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/lib/views/progress.dart -------------------------------------------------------------------------------- /flutter_weui_example/lib/views/radio.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/lib/views/radio.dart -------------------------------------------------------------------------------- /flutter_weui_example/lib/views/radiolist.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/lib/views/radiolist.dart -------------------------------------------------------------------------------- /flutter_weui_example/lib/views/slider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/lib/views/slider.dart -------------------------------------------------------------------------------- /flutter_weui_example/lib/views/spin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/lib/views/spin.dart -------------------------------------------------------------------------------- /flutter_weui_example/lib/views/swipe.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/lib/views/swipe.dart -------------------------------------------------------------------------------- /flutter_weui_example/lib/views/switch.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/lib/views/switch.dart -------------------------------------------------------------------------------- /flutter_weui_example/lib/views/tip.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/lib/views/tip.dart -------------------------------------------------------------------------------- /flutter_weui_example/lib/views/toast.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/lib/views/toast.dart -------------------------------------------------------------------------------- /flutter_weui_example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/flutter_weui_example/pubspec.yaml -------------------------------------------------------------------------------- /weui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/.gitignore -------------------------------------------------------------------------------- /weui/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/.metadata -------------------------------------------------------------------------------- /weui/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/.vscode/launch.json -------------------------------------------------------------------------------- /weui/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/CHANGELOG.md -------------------------------------------------------------------------------- /weui/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/LICENSE -------------------------------------------------------------------------------- /weui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/README.md -------------------------------------------------------------------------------- /weui/assets/font-icon/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/assets/font-icon/iconfont.ttf -------------------------------------------------------------------------------- /weui/assets/images/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/assets/images/loading.png -------------------------------------------------------------------------------- /weui/ios/Flutter/flutter_export_environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/ios/Flutter/flutter_export_environment.sh -------------------------------------------------------------------------------- /weui/lib/actionsheet/android_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/lib/actionsheet/android_widget.dart -------------------------------------------------------------------------------- /weui/lib/actionsheet/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/lib/actionsheet/index.dart -------------------------------------------------------------------------------- /weui/lib/actionsheet/ios_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/lib/actionsheet/ios_widget.dart -------------------------------------------------------------------------------- /weui/lib/actionsheet/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/lib/actionsheet/utils.dart -------------------------------------------------------------------------------- /weui/lib/animation/fade_in.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/lib/animation/fade_in.dart -------------------------------------------------------------------------------- /weui/lib/animation/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/lib/animation/index.dart -------------------------------------------------------------------------------- /weui/lib/animation/rotating.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/lib/animation/rotating.dart -------------------------------------------------------------------------------- /weui/lib/animation/scale.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/lib/animation/scale.dart -------------------------------------------------------------------------------- /weui/lib/badge/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/lib/badge/index.dart -------------------------------------------------------------------------------- /weui/lib/button/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/lib/button/index.dart -------------------------------------------------------------------------------- /weui/lib/cell/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/lib/cell/index.dart -------------------------------------------------------------------------------- /weui/lib/check_list/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/lib/check_list/index.dart -------------------------------------------------------------------------------- /weui/lib/checkbox/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/lib/checkbox/index.dart -------------------------------------------------------------------------------- /weui/lib/collapse/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/lib/collapse/index.dart -------------------------------------------------------------------------------- /weui/lib/dialog/android_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/lib/dialog/android_widget.dart -------------------------------------------------------------------------------- /weui/lib/dialog/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/lib/dialog/index.dart -------------------------------------------------------------------------------- /weui/lib/dialog/ios_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/lib/dialog/ios_widget.dart -------------------------------------------------------------------------------- /weui/lib/dialog/layout_hoc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/lib/dialog/layout_hoc.dart -------------------------------------------------------------------------------- /weui/lib/drawer/drawer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/lib/drawer/drawer.dart -------------------------------------------------------------------------------- /weui/lib/drawer/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/lib/drawer/index.dart -------------------------------------------------------------------------------- /weui/lib/form/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/lib/form/index.dart -------------------------------------------------------------------------------- /weui/lib/grid/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/lib/grid/index.dart -------------------------------------------------------------------------------- /weui/lib/icon/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/lib/icon/index.dart -------------------------------------------------------------------------------- /weui/lib/image_preview/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/lib/image_preview/index.dart -------------------------------------------------------------------------------- /weui/lib/image_preview/preview_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/lib/image_preview/preview_widget.dart -------------------------------------------------------------------------------- /weui/lib/input/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/lib/input/index.dart -------------------------------------------------------------------------------- /weui/lib/loadmore/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/lib/loadmore/index.dart -------------------------------------------------------------------------------- /weui/lib/notice_bar/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/lib/notice_bar/index.dart -------------------------------------------------------------------------------- /weui/lib/notify/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/lib/notify/index.dart -------------------------------------------------------------------------------- /weui/lib/notify/notify.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/lib/notify/notify.dart -------------------------------------------------------------------------------- /weui/lib/picker_view/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/lib/picker_view/index.dart -------------------------------------------------------------------------------- /weui/lib/progress/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/lib/progress/index.dart -------------------------------------------------------------------------------- /weui/lib/radio/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/lib/radio/index.dart -------------------------------------------------------------------------------- /weui/lib/radio_list/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/lib/radio_list/index.dart -------------------------------------------------------------------------------- /weui/lib/slider/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/lib/slider/index.dart -------------------------------------------------------------------------------- /weui/lib/spin/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/lib/spin/index.dart -------------------------------------------------------------------------------- /weui/lib/swipe/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/lib/swipe/index.dart -------------------------------------------------------------------------------- /weui/lib/switch/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/lib/switch/index.dart -------------------------------------------------------------------------------- /weui/lib/theme/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/lib/theme/index.dart -------------------------------------------------------------------------------- /weui/lib/tip/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/lib/tip/index.dart -------------------------------------------------------------------------------- /weui/lib/toast/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/lib/toast/index.dart -------------------------------------------------------------------------------- /weui/lib/toast/info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/lib/toast/info.dart -------------------------------------------------------------------------------- /weui/lib/toast/toast.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/lib/toast/toast.dart -------------------------------------------------------------------------------- /weui/lib/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/lib/utils.dart -------------------------------------------------------------------------------- /weui/lib/weui.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/lib/weui.dart -------------------------------------------------------------------------------- /weui/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allan-hx/flutter-weui/HEAD/weui/pubspec.yaml --------------------------------------------------------------------------------