main.dart 26 KB

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