├── .gitignore ├── LICENSE ├── README.md ├── lib ├── app │ ├── config │ │ └── config.dart │ ├── model │ │ ├── movie.dart │ │ ├── player.dart │ │ ├── push.dart │ │ └── site.dart │ ├── tool │ │ ├── decode.dart │ │ ├── http.dart │ │ ├── random.dart │ │ ├── search.dart │ │ └── time.dart │ └── widget │ │ ├── myBlurButton.dart │ │ ├── myBottomInput.dart │ │ ├── myBottomSheet.dart │ │ ├── myBottomTip.dart │ │ ├── myImage.dart │ │ ├── myRoundButton.dart │ │ ├── myText.dart │ │ ├── myTextField.dart │ │ ├── myTips.dart │ │ └── myToast.dart ├── generated_plugin_registrant.dart ├── main.dart └── pages │ ├── detail.dart │ ├── home.dart │ ├── play.dart │ ├── playx.dart │ ├── searchList.dart │ ├── share.dart │ ├── tv.dart │ └── video │ ├── after_layout.dart │ ├── controller_widget.dart │ ├── video_player_UI.dart │ ├── video_player_control.dart │ ├── video_player_pan.dart │ └── video_player_slider.dart ├── pubspec.yaml └── screenshots ├── 1.jpg ├── 2.jpg ├── 3.jpg ├── 4.jpg ├── 5.jpg ├── 6.jpg ├── 7.jpg ├── 8.jpg └── logo.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/README.md -------------------------------------------------------------------------------- /lib/app/config/config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/lib/app/config/config.dart -------------------------------------------------------------------------------- /lib/app/model/movie.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/lib/app/model/movie.dart -------------------------------------------------------------------------------- /lib/app/model/player.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/lib/app/model/player.dart -------------------------------------------------------------------------------- /lib/app/model/push.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/lib/app/model/push.dart -------------------------------------------------------------------------------- /lib/app/model/site.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/lib/app/model/site.dart -------------------------------------------------------------------------------- /lib/app/tool/decode.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/lib/app/tool/decode.dart -------------------------------------------------------------------------------- /lib/app/tool/http.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/lib/app/tool/http.dart -------------------------------------------------------------------------------- /lib/app/tool/random.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/lib/app/tool/random.dart -------------------------------------------------------------------------------- /lib/app/tool/search.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/lib/app/tool/search.dart -------------------------------------------------------------------------------- /lib/app/tool/time.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/lib/app/tool/time.dart -------------------------------------------------------------------------------- /lib/app/widget/myBlurButton.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/lib/app/widget/myBlurButton.dart -------------------------------------------------------------------------------- /lib/app/widget/myBottomInput.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/lib/app/widget/myBottomInput.dart -------------------------------------------------------------------------------- /lib/app/widget/myBottomSheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/lib/app/widget/myBottomSheet.dart -------------------------------------------------------------------------------- /lib/app/widget/myBottomTip.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/lib/app/widget/myBottomTip.dart -------------------------------------------------------------------------------- /lib/app/widget/myImage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/lib/app/widget/myImage.dart -------------------------------------------------------------------------------- /lib/app/widget/myRoundButton.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/lib/app/widget/myRoundButton.dart -------------------------------------------------------------------------------- /lib/app/widget/myText.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/lib/app/widget/myText.dart -------------------------------------------------------------------------------- /lib/app/widget/myTextField.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/lib/app/widget/myTextField.dart -------------------------------------------------------------------------------- /lib/app/widget/myTips.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/lib/app/widget/myTips.dart -------------------------------------------------------------------------------- /lib/app/widget/myToast.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/lib/app/widget/myToast.dart -------------------------------------------------------------------------------- /lib/generated_plugin_registrant.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/lib/generated_plugin_registrant.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/pages/detail.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/lib/pages/detail.dart -------------------------------------------------------------------------------- /lib/pages/home.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/lib/pages/home.dart -------------------------------------------------------------------------------- /lib/pages/play.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/lib/pages/play.dart -------------------------------------------------------------------------------- /lib/pages/playx.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/lib/pages/playx.dart -------------------------------------------------------------------------------- /lib/pages/searchList.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/lib/pages/searchList.dart -------------------------------------------------------------------------------- /lib/pages/share.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/lib/pages/share.dart -------------------------------------------------------------------------------- /lib/pages/tv.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/lib/pages/tv.dart -------------------------------------------------------------------------------- /lib/pages/video/after_layout.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/lib/pages/video/after_layout.dart -------------------------------------------------------------------------------- /lib/pages/video/controller_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/lib/pages/video/controller_widget.dart -------------------------------------------------------------------------------- /lib/pages/video/video_player_UI.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/lib/pages/video/video_player_UI.dart -------------------------------------------------------------------------------- /lib/pages/video/video_player_control.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/lib/pages/video/video_player_control.dart -------------------------------------------------------------------------------- /lib/pages/video/video_player_pan.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/lib/pages/video/video_player_pan.dart -------------------------------------------------------------------------------- /lib/pages/video/video_player_slider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/lib/pages/video/video_player_slider.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /screenshots/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/screenshots/1.jpg -------------------------------------------------------------------------------- /screenshots/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/screenshots/2.jpg -------------------------------------------------------------------------------- /screenshots/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/screenshots/3.jpg -------------------------------------------------------------------------------- /screenshots/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/screenshots/4.jpg -------------------------------------------------------------------------------- /screenshots/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/screenshots/5.jpg -------------------------------------------------------------------------------- /screenshots/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/screenshots/6.jpg -------------------------------------------------------------------------------- /screenshots/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/screenshots/7.jpg -------------------------------------------------------------------------------- /screenshots/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/screenshots/8.jpg -------------------------------------------------------------------------------- /screenshots/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idootop/feiyu_flutter/HEAD/screenshots/logo.png --------------------------------------------------------------------------------