main.dart 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902
  1. import 'dart:io';
  2. import 'package:douyin_demo/pages/RecommendPage/BottomSheet.dart';
  3. import 'package:douyin_demo/providers/RecommendProvider.dart';
  4. import 'package:douyin_demo/widgets/BottomBar.dart';
  5. // import 'package:douyin_demo/widgets/FavAnimation.dart' as prefix0;
  6. import 'package:flutter/material.dart';
  7. import 'package:flutter_swiper/flutter_swiper.dart';
  8. // import 'package:marquee/marquee.dart';
  9. import 'package:marquee_flutter/marquee_flutter.dart';
  10. import 'package:provider/provider.dart';
  11. import 'package:shared_preferences/shared_preferences.dart';
  12. import 'package:video_player/video_player.dart';
  13. import 'widgets/FavAnimation.dart';
  14. Future main() async {
  15. WidgetsFlutterBinding.ensureInitialized();
  16. final prefs = await SharedPreferences.getInstance();
  17. // prefs.clear();
  18. // String hosts = prefs.get('urlPath');
  19. // String scheme = prefs.get('scheme');
  20. // int ports = prefs.get('ports');
  21. prefs.setBool("ifIOS", Platform.isIOS);
  22. prefs.setBool("ifPrd", false);
  23. prefs.setBool("ifReal_d", false);
  24. prefs.setString("urlPath_real_d", "192.168.0.8");
  25. prefs.setString("scheme_real_d", "http");
  26. prefs.setInt("ports_real_d", 5000);
  27. prefs.setString("urlPath_ios_d", "127.0.0.1");
  28. prefs.setString("scheme_ios_d", "http");
  29. prefs.setInt("ports_ios_d", 5000);
  30. prefs.setString("urlPath_and_d", "10.0.2.2");
  31. prefs.setString("scheme_and_d", "http");
  32. prefs.setInt("ports_and_d", 5000);
  33. prefs.setString("urlPath_p", "118.26.177.76");
  34. prefs.setString("scheme_p", "http");
  35. prefs.setInt("ports_p", 80);
  36. prefs.setString("picServer", "http://www.guojio.com");
  37. runApp(MyApp());
  38. // runApp(MyApp());
  39. }
  40. class MyApp extends StatelessWidget {
  41. const MyApp({Key key}) : super(key: key);
  42. @override
  43. Widget build(BuildContext context) {
  44. return MaterialApp(
  45. title: "某音",
  46. theme: ThemeData(primaryColor: Color(0xff121319)),
  47. home: RecommendPage(
  48. selIndex: 0,
  49. ),
  50. );
  51. }
  52. }
  53. class RecommendPage extends StatelessWidget {
  54. const RecommendPage({Key key, @required this.selIndex}) : super(key: key);
  55. final int selIndex;
  56. @override
  57. Widget build(BuildContext context) {
  58. double rpx = MediaQuery.of(context).size.width / 750;
  59. // MediaQuery.of(context).padding.top
  60. // MediaQuery.of(context).padding.bottom
  61. return MultiProvider(
  62. providers: [
  63. ChangeNotifierProvider(
  64. builder: (context) => RecommendProvider(),
  65. )
  66. ],
  67. child: Scaffold(
  68. resizeToAvoidBottomInset: false,
  69. body: Stack(children: [
  70. MainTabView(),
  71. Positioned(
  72. top: 20 * rpx,
  73. // height: 120,
  74. width: 750 * rpx,
  75. child: SafeArea(
  76. child: Container(
  77. // decoration: BoxDecoration(color: Colors.pinkAccent),
  78. child: TopTab(),
  79. )),
  80. ),
  81. ]),
  82. bottomNavigationBar: BottomSafeBar(
  83. selIndex: selIndex,
  84. ),
  85. ));
  86. }
  87. }
  88. class MainTabView extends StatelessWidget {
  89. const MainTabView({Key key}) : super(key: key);
  90. @override
  91. Widget build(BuildContext context) {
  92. RecommendProvider provider = Provider.of<RecommendProvider>(context);
  93. return TabBarView(
  94. controller: provider.controller,
  95. children: <Widget>[
  96. SwiperMain(type: "followed",),
  97. SwiperMain(type: "recommend",),
  98. ],
  99. );
  100. }
  101. }
  102. class SwiperMain extends StatefulWidget {
  103. SwiperMain({Key key,this.type}) : super(key: key);
  104. final String type;
  105. _SwiperMainState createState() => _SwiperMainState();
  106. }
  107. class _SwiperMainState extends State<SwiperMain> with AutomaticKeepAliveClientMixin {
  108. @override
  109. Widget build(BuildContext context) {
  110. RecommendProvider provider = Provider.of<RecommendProvider>(context);
  111. List<MainInfo> infos=List<MainInfo>();
  112. if(widget.type=="followed"){
  113. infos=provider.followed;
  114. }
  115. else{
  116. infos=provider.infos;
  117. }
  118. return Swiper(
  119. loop: false,
  120. scrollDirection: Axis.vertical,
  121. itemCount: infos.length,
  122. itemBuilder: (context, index) {
  123. MainInfo curData = infos[index];
  124. return Container(
  125. decoration: BoxDecoration(color: Colors.black),
  126. child: Stack(children: [
  127. CenterImage(
  128. videoPath: curData.videoPath,
  129. ),
  130. Home(),
  131. ]),
  132. );
  133. },
  134. );
  135. }
  136. @override
  137. // TODO: implement wantKeepAlive
  138. bool get wantKeepAlive => true;
  139. }
  140. // class SwiperMain extends StatelessWidget {
  141. // const SwiperMain({Key key,@required this.type}) : super(key: key);
  142. // final String type;
  143. // @override
  144. // Widget build(BuildContext context) {
  145. // RecommendProvider provider = Provider.of<RecommendProvider>(context);
  146. // List<MainInfo> infos=List<MainInfo>();
  147. // if(type=="followed"){
  148. // infos=provider.followed;
  149. // }
  150. // else{
  151. // infos=provider.infos;
  152. // }
  153. // return Swiper(
  154. // loop: false,
  155. // scrollDirection: Axis.vertical,
  156. // itemCount: infos.length,
  157. // itemBuilder: (context, index) {
  158. // MainInfo curData = infos[index];
  159. // return Container(
  160. // decoration: BoxDecoration(color: Colors.black),
  161. // child: Stack(children: [
  162. // CenterImage(
  163. // videoPath: curData.videoPath,
  164. // ),
  165. // Home(),
  166. // ]),
  167. // );
  168. // },
  169. // );
  170. // }
  171. // }
  172. class BottomSafeBar extends StatelessWidget {
  173. const BottomSafeBar({Key key, @required this.selIndex}) : super(key: key);
  174. final int selIndex;
  175. @override
  176. Widget build(BuildContext context) {
  177. RecommendProvider provider = Provider.of<RecommendProvider>(context);
  178. // double toBottom=MediaQuery.of(context).viewInsets.bottom;
  179. return Container(
  180. // padding: EdgeInsets.only(top:toBottom),
  181. decoration: BoxDecoration(color: Colors.black),
  182. child: SafeArea(
  183. child: BottomAppBar(
  184. child: Container(
  185. decoration: BoxDecoration(color: Colors.black),
  186. height: 60,
  187. // decoration: BoxDecoration(color: Colors.black),
  188. child: BtmBar(
  189. selectIndex: selIndex,
  190. ),
  191. ),
  192. )),
  193. );
  194. }
  195. }
  196. class CenterImage extends StatelessWidget {
  197. const CenterImage({Key key, @required this.videoPath}) : super(key: key);
  198. final String videoPath;
  199. @override
  200. Widget build(BuildContext context) {
  201. // double bottom = MediaQuery.of(context).viewInsets.bottom;
  202. // RecommendProvider provider = Provider.of<RecommendProvider>(context);
  203. return Center(
  204. child: Container(
  205. // padding: EdgeInsets.only(top: bottom),
  206. child: Image.asset(videoPath)),
  207. );
  208. }
  209. }
  210. class VideoBack extends StatefulWidget {
  211. VideoBack({Key key}) : super(key: key);
  212. _VideoBackState createState() => _VideoBackState();
  213. }
  214. class _VideoBackState extends State<VideoBack> {
  215. VideoPlayerController _controller;
  216. bool _isPlaying = false;
  217. String url =
  218. "https://www.guojio.com/video/07a7faa1-3696-4af7-aeac-2d6cf6bf25f9.mp4";
  219. @override
  220. void initState() {
  221. // TODO: implement initState
  222. super.initState();
  223. _controller = VideoPlayerController.network(this.url)
  224. // 播放状态
  225. ..addListener(() {
  226. final bool isPlaying = _controller.value.isPlaying;
  227. if (isPlaying != _isPlaying) {
  228. setState(() {
  229. _isPlaying = isPlaying;
  230. });
  231. }
  232. })
  233. // 在初始化完成后必须更新界面
  234. ..initialize().then((_) {
  235. setState(() {});
  236. });
  237. }
  238. @override
  239. Widget build(BuildContext context) {
  240. return Container(
  241. child: _controller.value.initialized
  242. // 加载成功
  243. ? new AspectRatio(
  244. aspectRatio: _controller.value.aspectRatio,
  245. child: VideoPlayer(_controller),
  246. )
  247. : new Container(),
  248. );
  249. }
  250. }
  251. class Home extends StatelessWidget {
  252. const Home({Key key}) : super(key: key);
  253. @override
  254. Widget build(BuildContext context) {
  255. double screenWidth = MediaQuery.of(context).size.width;
  256. double screenHeight = MediaQuery.of(context).size.height;
  257. RecommendProvider provider = Provider.of<RecommendProvider>(context);
  258. double rpx = screenWidth / 750;
  259. return Stack(children: [
  260. Positioned(
  261. bottom: 0,
  262. width: 0.70 * screenWidth,
  263. height: 260 * rpx,
  264. child: Container(
  265. // decoration: BoxDecoration(color: Colors.redAccent),
  266. child: BtnContent(),
  267. ),
  268. ),
  269. Positioned(
  270. right: 0,
  271. width: 0.2 * screenWidth,
  272. height: 500 * rpx,
  273. top: 0.45 * screenHeight,
  274. child: Container(
  275. // decoration: BoxDecoration(color: Colors.orangeAccent),
  276. child: ButtonList(),
  277. ),
  278. ),
  279. Positioned(
  280. bottom: 20 * rpx,
  281. right: 0,
  282. width: 0.2 * screenWidth,
  283. height: 0.2 * screenWidth,
  284. child: Container(
  285. // decoration: BoxDecoration(color: Colors.purpleAccent),
  286. child: RotateAlbum(),
  287. ),
  288. )
  289. ]);
  290. }
  291. }
  292. class TopTab extends StatefulWidget {
  293. TopTab({Key key}) : super(key: key);
  294. _TopTabState createState() => _TopTabState();
  295. }
  296. class _TopTabState extends State<TopTab> with SingleTickerProviderStateMixin {
  297. // TabController _controller;
  298. // RecommendProvider provider;
  299. @override
  300. void initState() {
  301. // TODO: implement initState
  302. super.initState();
  303. // _controller = TabController(vsync: this, length: 2, initialIndex: 1);
  304. }
  305. @override
  306. Widget build(BuildContext context) {
  307. RecommendProvider provider=Provider.of<RecommendProvider>(context);
  308. double rpx = MediaQuery.of(context).size.width / 750;
  309. return Row(
  310. crossAxisAlignment: CrossAxisAlignment.center,
  311. mainAxisAlignment: MainAxisAlignment.spaceBetween,
  312. children: [
  313. // BottomNavigationBar(items: [BottomNavigationBarItem(icon: null,)],)
  314. SizedBox(
  315. width: 17 * rpx,
  316. ),
  317. Icon(
  318. Icons.search,
  319. size: 50 * rpx,
  320. color: Colors.white,
  321. ),
  322. Container(
  323. child: Container(
  324. padding: EdgeInsets.symmetric(horizontal: 90 * rpx),
  325. width: 500 * rpx,
  326. child: TabBar(
  327. indicatorColor: Colors.white,
  328. labelStyle: TextStyle(color: Colors.white, fontSize: 20),
  329. indicatorPadding: EdgeInsets.symmetric(horizontal: 30),
  330. unselectedLabelStyle:
  331. TextStyle(color: Colors.grey[700], fontSize: 18),
  332. controller: provider.controller,
  333. tabs: <Widget>[Text("关注"), Text("推荐")],
  334. ))),
  335. Icon(
  336. Icons.live_tv,
  337. size: 30,
  338. color: Colors.white,
  339. ),
  340. SizedBox(
  341. width: 10,
  342. ),
  343. ],
  344. );
  345. }
  346. }
  347. class BtnContent extends StatelessWidget {
  348. const BtnContent({Key key}) : super(key: key);
  349. @override
  350. Widget build(BuildContext context) {
  351. RecommendProvider provider = Provider.of<RecommendProvider>(context);
  352. return Container(
  353. child: Column(
  354. mainAxisSize: MainAxisSize.min,
  355. children: <Widget>[
  356. ListTile(
  357. title: Text(
  358. "@${provider.mainInfo.userName}",
  359. style: TextStyle(color: Colors.white, fontSize: 16),
  360. ),
  361. subtitle: Text(
  362. "${provider.mainInfo.content}",
  363. style: TextStyle(color: Colors.white, fontSize: 16),
  364. maxLines: 3,
  365. overflow: TextOverflow.ellipsis,
  366. ),
  367. ),
  368. Row(
  369. children: <Widget>[
  370. SizedBox(
  371. width: 10,
  372. ),
  373. Icon(
  374. Icons.music_note,
  375. color: Colors.white,
  376. ),
  377. // Marquee(text: "",),
  378. // Container(
  379. // width: 200,
  380. // height: 20,
  381. // child: MarqueeWidget(
  382. // text: '${provider.mainInfo.desc}',
  383. // textStyle: TextStyle(
  384. // fontWeight: FontWeight.bold,
  385. // color: Colors.white,
  386. // fontSize: 16),
  387. // // scrollAxis: Axis.horizontal,
  388. // // crossAxisAlignment: CrossAxisAlignment.start,
  389. // // blankSpace: 20.0,
  390. // // velocity: 100.0,
  391. // // pauseAfterRound: Duration(seconds: 1),
  392. // // startPadding: 10.0,
  393. // // accelerationDuration: Duration(seconds: 1),
  394. // // accelerationCurve: Curves.linear,
  395. // // decelerationDuration: Duration(milliseconds: 500),
  396. // // decelerationCurve: Curves.easeOut,
  397. // ))
  398. ],
  399. )
  400. ],
  401. ),
  402. );
  403. }
  404. }
  405. class RotateAlbum extends StatefulWidget {
  406. RotateAlbum({Key key}) : super(key: key);
  407. _RotateAlbumState createState() => _RotateAlbumState();
  408. }
  409. class _RotateAlbumState extends State<RotateAlbum>
  410. with SingleTickerProviderStateMixin {
  411. AnimationController _controller;
  412. var animation;
  413. @override
  414. void initState() {
  415. super.initState();
  416. _controller =
  417. AnimationController(vsync: this, duration: Duration(seconds: 4));
  418. animation = RotationTransition(
  419. turns: Tween(begin: 0.0, end: 1.0).animate(_controller)
  420. ..addStatusListener((status) {
  421. if (status == AnimationStatus.completed) {
  422. // _controller.forward(from: 0.0);
  423. }
  424. }),
  425. child: Container(
  426. child: CircleAvatar(
  427. backgroundImage: NetworkImage(
  428. "https://gss1.bdstatic.com/9vo3dSag_xI4khGkpoWK1HF6hhy/baike/s%3D500/sign=dde475320ee9390152028d3e4bec54f9/d009b3de9c82d1586d8294a38f0a19d8bc3e42a4.jpg"),
  429. )),
  430. );
  431. _controller.forward(from: 0.0);
  432. }
  433. @override
  434. void dispose() {
  435. // TODO: implement dispose
  436. _controller.dispose();
  437. super.dispose();
  438. }
  439. @override
  440. Widget build(BuildContext context) {
  441. return Container(
  442. padding: EdgeInsets.all(18),
  443. child: animation,
  444. );
  445. }
  446. }
  447. class ButtonList extends StatefulWidget {
  448. ButtonList({Key key}) : super(key: key);
  449. _ButtonListState createState() => _ButtonListState();
  450. }
  451. class _ButtonListState extends State<ButtonList> {
  452. @override
  453. Widget build(BuildContext context) {
  454. double rpx = MediaQuery.of(context).size.width / 750;
  455. RecommendProvider provider = Provider.of<RecommendProvider>(context);
  456. List<IconAnimationStage> stages1 = List<IconAnimationStage>();
  457. stages1.add(IconAnimationStage(
  458. color: Colors.grey[100],
  459. start: 1.0,
  460. end: 0.0,
  461. duration: Duration(milliseconds: 200)));
  462. stages1.add(IconAnimationStage(
  463. color: Colors.redAccent,
  464. start: 0.0,
  465. end: 1.3,
  466. duration: Duration(milliseconds: 300)));
  467. stages1.add(IconAnimationStage(
  468. color: Colors.redAccent,
  469. start: 1.3,
  470. end: 1.0,
  471. duration: Duration(milliseconds: 100)));
  472. List<IconAnimationStage> stages2 = List<IconAnimationStage>();
  473. stages2.add(IconAnimationStage(
  474. color: Colors.grey[100],
  475. start: 1.0,
  476. end: 1.2,
  477. duration: Duration(milliseconds: 200)));
  478. stages2.add(IconAnimationStage(
  479. color: Colors.grey[100],
  480. start: 1.2,
  481. end: 1.0,
  482. duration: Duration(milliseconds: 200)));
  483. List<IconAnimationStage> stages3 = List<IconAnimationStage>();
  484. stages3.add(IconAnimationStage(
  485. color: Colors.redAccent,
  486. start: 1.0,
  487. end: 1.2,
  488. duration: Duration(milliseconds: 200)));
  489. stages3.add(IconAnimationStage(
  490. color: Colors.grey[100],
  491. start: 1.2,
  492. end: 1.0,
  493. duration: Duration(milliseconds: 200)));
  494. double iconSize = 70 * rpx;
  495. return Container(
  496. child: Column(
  497. mainAxisAlignment: MainAxisAlignment.spaceAround,
  498. crossAxisAlignment: CrossAxisAlignment.center,
  499. children: <Widget>[
  500. Container(
  501. width: 90 * rpx,
  502. height: 105 * rpx,
  503. child: Stack(
  504. children: <Widget>[
  505. Container(
  506. // decoration: BoxDecoration(c),
  507. width: 90 * rpx,
  508. height: 90 * rpx,
  509. child: CircleAvatar(
  510. backgroundImage:
  511. NetworkImage("${provider.mainInfo.avatarUrl}"),
  512. )),
  513. Positioned(
  514. bottom: 0,
  515. left: 25 * rpx,
  516. child: Container(
  517. width: 40 * rpx,
  518. height: 40 * rpx,
  519. decoration: BoxDecoration(
  520. color: Colors.redAccent,
  521. borderRadius: BorderRadius.circular(25)),
  522. child: Icon(
  523. Icons.add,
  524. size: 20,
  525. color: Colors.white,
  526. ),
  527. ),
  528. )
  529. ],
  530. )),
  531. IconText(
  532. text: "${provider.mainInfo.favCount}",
  533. icon: !provider.mainInfo.ifFaved
  534. ? AnimatedIconWidget(
  535. key: UniqueKey(),
  536. animationList: stages1,
  537. icon: Icons.favorite,
  538. size: iconSize,
  539. provider: provider,
  540. callback: () {
  541. provider.tapFav();
  542. })
  543. : AnimatedIconWidget(
  544. key: UniqueKey(),
  545. animationList: stages3,
  546. icon: Icons.favorite,
  547. size: iconSize,
  548. provider: provider,
  549. callback: () {
  550. provider.tapFav();
  551. },
  552. ),
  553. ),
  554. IconText(
  555. text: "${provider.mainInfo.replyCount}",
  556. icon: AnimatedIconWidget(
  557. animationList: stages2,
  558. icon: Icons.comment,
  559. size: iconSize,
  560. callbackDelay: Duration(milliseconds: 200),
  561. callback: () {
  562. showBottom(context, provider);
  563. },
  564. ),
  565. ),
  566. IconText(
  567. text: "${provider.mainInfo.shareCount}",
  568. icon: AnimatedIconWidget(
  569. animationList: stages2,
  570. icon: Icons.reply,
  571. size: iconSize,
  572. ),
  573. ),
  574. ],
  575. ),
  576. );
  577. }
  578. }
  579. // class ButtonList extends StatelessWidget {
  580. // const ButtonList({Key key}) : super(key: key);
  581. // @override
  582. // }
  583. // getButtonList(double rpx, RecommendProvider provider, BuildContext context) {
  584. // return
  585. // }
  586. class IconText extends StatelessWidget {
  587. const IconText({Key key, this.icon, this.text}) : super(key: key);
  588. final AnimatedIconWidget icon;
  589. final String text;
  590. @override
  591. Widget build(BuildContext context) {
  592. double rpx = MediaQuery.of(context).size.width / 750;
  593. return Container(
  594. child: Column(
  595. mainAxisSize: MainAxisSize.min,
  596. mainAxisAlignment: MainAxisAlignment.center,
  597. crossAxisAlignment: CrossAxisAlignment.center,
  598. children: <Widget>[
  599. icon,
  600. Container(
  601. // alignment: Alignment.center,
  602. child: Text(
  603. text,
  604. style: TextStyle(color: Colors.white, fontSize: 25 * rpx),
  605. )),
  606. ],
  607. ),
  608. );
  609. }
  610. }
  611. showBottom(context, provider) {
  612. // RecommendProvider provider = Provider.of<RecommendProvider>(context);
  613. double height = MediaQuery.of(context).size.height;
  614. provider.setScreenHeight(height);
  615. provider.hideBottomBar();
  616. showModalBottomSheet(
  617. shape: RoundedRectangleBorder(
  618. borderRadius: BorderRadiusDirectional.circular(10)),
  619. context: context,
  620. builder: (_) {
  621. return Container(
  622. height: 600,
  623. child: GestureDetector(
  624. onTap: () {
  625. FocusScope.of(context).requestFocus(FocusNode());
  626. },
  627. child: ReplyFullList(pCtx: context)));
  628. });
  629. }
  630. // import 'package:camera/camera.dart';
  631. // import 'package:firebase_ml_vision/firebase_ml_vision.dart';
  632. // import 'package:flutter/foundation.dart';
  633. // import 'package:flutter/material.dart';
  634. // import 'detector_painters.dart';
  635. // import 'utils.dart';
  636. // void main() => runApp(MaterialApp(home: MyHomePage()));
  637. // class MyHomePage extends StatefulWidget {
  638. // @override
  639. // MyHomePageState createState() => MyHomePageState();
  640. // }
  641. // class MyHomePageState extends State<MyHomePage> {
  642. // dynamic _scanResults;
  643. // CameraController _camera;
  644. // Detector _currentDetector = Detector.text;
  645. // bool _isDetecting = false;
  646. // CameraLensDirection _direction = CameraLensDirection.back;
  647. // @override
  648. // void initState() {
  649. // super.initState();
  650. // _initializeCamera();
  651. // }
  652. // void _initializeCamera() async {
  653. // CameraDescription description = await getCamera(_direction);
  654. // ImageRotation rotation = rotationIntToImageRotation(
  655. // description.sensorOrientation,
  656. // );
  657. // _camera = CameraController(
  658. // description,
  659. // defaultTargetPlatform == TargetPlatform.iOS
  660. // ? ResolutionPreset.low
  661. // : ResolutionPreset.high,
  662. // );
  663. // await _camera.initialize();
  664. // _camera.startImageStream((CameraImage image) {
  665. // if (_isDetecting) return;
  666. // _isDetecting = true;
  667. // detect(image, _getDetectionMethod(), rotation).then(
  668. // (dynamic result) {
  669. // setState(() {
  670. // _scanResults = result;
  671. // });
  672. // _isDetecting = false;
  673. // },
  674. // ).catchError(
  675. // (_) {
  676. // _isDetecting = false;
  677. // },
  678. // );
  679. // });
  680. // }
  681. // HandleDetection _getDetectionMethod() {
  682. // final FirebaseVision mlVision = FirebaseVision.instance;
  683. // switch (_currentDetector) {
  684. // case Detector.text:
  685. // return mlVision.textRecognizer().processImage;
  686. // case Detector.barcode:
  687. // return mlVision.barcodeDetector().detectInImage;
  688. // // case Detector.label:
  689. // // return mlVision.labelDetector().detectInImage;
  690. // // case Detector.cloudLabel:
  691. // // return mlVision.cloudLabelDetector().detectInImage;
  692. // default:
  693. // assert(_currentDetector == Detector.face);
  694. // return mlVision.faceDetector().processImage;
  695. // }
  696. // }
  697. // Widget _buildResults() {
  698. // const Text noResultsText = const Text('No results!');
  699. // if (_scanResults == null ||
  700. // _camera == null ||
  701. // !_camera.value.isInitialized) {
  702. // return noResultsText;
  703. // }
  704. // CustomPainter painter;
  705. // final Size imageSize = Size(
  706. // _camera.value.previewSize.height,
  707. // _camera.value.previewSize.width,
  708. // );
  709. // switch (_currentDetector) {
  710. // case Detector.barcode:
  711. // if (_scanResults is! List<Barcode>) return noResultsText;
  712. // painter = BarcodeDetectorPainter(imageSize, _scanResults);
  713. // break;
  714. // case Detector.face:
  715. // if (_scanResults is! List<Face>) return noResultsText;
  716. // painter = FaceDetectorPainter(imageSize, _scanResults);
  717. // break;
  718. // // case Detector.label:
  719. // // if (_scanResults is! List<Label>) return noResultsText;
  720. // // painter = LabelDetectorPainter(imageSize, _scanResults);
  721. // // break;
  722. // // case Detector.cloudLabel:
  723. // // if (_scanResults is! List<Label>) return noResultsText;
  724. // // painter = LabelDetectorPainter(imageSize, _scanResults);
  725. // // break;
  726. // default:
  727. // assert(_currentDetector == Detector.text);
  728. // if (_scanResults is! VisionText) return noResultsText;
  729. // painter = TextDetectorPainter(imageSize, _scanResults);
  730. // }
  731. // return CustomPaint(
  732. // painter: painter,
  733. // );
  734. // }
  735. // Widget _buildImage() {
  736. // return Container(
  737. // constraints: const BoxConstraints.expand(),
  738. // child: _camera == null
  739. // ? const Center(
  740. // child: Text(
  741. // 'Initializing Camera...',
  742. // style: TextStyle(
  743. // color: Colors.green,
  744. // fontSize: 30.0,
  745. // ),
  746. // ),
  747. // )
  748. // : Stack(
  749. // // fit: StackFit.expand,
  750. // children: <Widget>[
  751. // AspectRatio(
  752. // aspectRatio: _camera.value.aspectRatio,
  753. // child: CameraPreview(_camera)
  754. // ),
  755. // _buildResults(),
  756. // ],
  757. // ),
  758. // );
  759. // }
  760. // void _toggleCameraDirection() async {
  761. // if (_direction == CameraLensDirection.back) {
  762. // _direction = CameraLensDirection.front;
  763. // } else {
  764. // _direction = CameraLensDirection.back;
  765. // }
  766. // await _camera.stopImageStream();
  767. // await _camera.dispose();
  768. // setState(() {
  769. // _camera = null;
  770. // });
  771. // _initializeCamera();
  772. // }
  773. // @override
  774. // Widget build(BuildContext context) {
  775. // return Scaffold(
  776. // appBar: AppBar(
  777. // title: const Text('ML Vision Example'),
  778. // actions: <Widget>[
  779. // PopupMenuButton<Detector>(
  780. // onSelected: (Detector result) {
  781. // _currentDetector = result;
  782. // },
  783. // itemBuilder: (BuildContext context) => <PopupMenuEntry<Detector>>[
  784. // const PopupMenuItem<Detector>(
  785. // child: Text('Detect Barcode'),
  786. // value: Detector.barcode,
  787. // ),
  788. // const PopupMenuItem<Detector>(
  789. // child: Text('Detect Face'),
  790. // value: Detector.face,
  791. // ),
  792. // // const PopupMenuItem<Detector>(
  793. // // child: Text('Detect Label'),
  794. // // value: Detector.label,
  795. // // ),
  796. // // const PopupMenuItem<Detector>(
  797. // // child: Text('Detect Cloud Label'),
  798. // // value: Detector.cloudLabel,
  799. // // ),
  800. // const PopupMenuItem<Detector>(
  801. // child: Text('Detect Text'),
  802. // value: Detector.text,
  803. // ),
  804. // ],
  805. // ),
  806. // ],
  807. // ),
  808. // body: _buildImage(),
  809. // floatingActionButton: FloatingActionButton(
  810. // onPressed: _toggleCameraDirection,
  811. // child: _direction == CameraLensDirection.back
  812. // ? const Icon(Icons.camera_front)
  813. // : const Icon(Icons.camera_rear),
  814. // ),
  815. // );
  816. // }
  817. // }