main_tab_view.dart 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. import 'package:douyin_demo/providers/RecommendProvider.dart';
  2. import 'package:douyin_demo/views/swiper_main.dart';
  3. import 'package:flutter/material.dart';
  4. import 'package:provider/provider.dart';
  5. import 'center_image.dart';
  6. class MainTabView extends StatelessWidget {
  7. const MainTabView({Key key}) : super(key: key);
  8. @override
  9. Widget build(BuildContext context) {
  10. RecommendProvider provider = Provider.of<RecommendProvider>(context);
  11. return TabBarView(
  12. controller: provider.controller,
  13. children: <Widget>[
  14. SwiperMain(
  15. type: "关注",
  16. ),
  17. SwiperMain(
  18. type: "推荐",
  19. ),
  20. ],
  21. );
  22. }
  23. }
  24. /// 自定义滑动tab
  25. class SwiperMain extends StatefulWidget {
  26. SwiperMain({Key key, this.type}) : super(key: key);
  27. final String type;
  28. _SwiperMainState createState() => _SwiperMainState();
  29. }
  30. class _SwiperMainState extends State<SwiperMain>
  31. with AutomaticKeepAliveClientMixin {
  32. @override
  33. Widget build(BuildContext context) {
  34. RecommendProvider provider = Provider.of<RecommendProvider>(context);
  35. List<MainInfo> infos = <MainInfo>[];
  36. if (widget.type == "followed") {
  37. infos = provider.followed;
  38. } else {
  39. infos = provider.infos;
  40. }
  41. return Swiper(
  42. loop: false,
  43. scrollDirection: Axis.vertical,
  44. itemCount: infos.length,
  45. itemBuilder: (context, index) {
  46. MainInfo curData = infos[index];
  47. return Container(
  48. decoration: BoxDecoration(color: Colors.black),
  49. child: Stack(children: [
  50. CenterImage(
  51. videoPath: curData.videoPath,
  52. ),
  53. Home(),
  54. ]),
  55. );
  56. },
  57. );
  58. }
  59. @override
  60. bool get wantKeepAlive => true;
  61. }