recommend_page.dart 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. import 'package:douyin_demo/providers/RecommendProvider.dart';
  2. import 'package:douyin_demo/views/bottom_safebar.dart';
  3. import 'package:douyin_demo/views/main_tab_view.dart';
  4. import 'package:flutter/material.dart';
  5. import 'package:provider/provider.dart';
  6. class RecommendPage extends StatelessWidget {
  7. final int selIndex;
  8. const RecommendPage({Key key, this.selIndex}) : super(key: key);
  9. @override
  10. Widget build(BuildContext context) {
  11. double rpx = MediaQuery.of(context).size.width / 750;
  12. return MultiProvider(
  13. providers: [
  14. ChangeNotifierProvider(
  15. create: (BuildContext context) {
  16. return RecommendProvider();
  17. },
  18. )
  19. ],
  20. child: Scaffold(
  21. resizeToAvoidBottomInset: false,
  22. body: Stack(children: [
  23. MainTabView(),
  24. Positioned(
  25. top: 20 * rpx,
  26. // height: 120,
  27. width: 750 * rpx,
  28. child: SafeArea(
  29. child: Container(
  30. // decoration: BoxDecoration(color: Colors.pinkAccent),
  31. child: TopTab(),
  32. )),
  33. ),
  34. ]),
  35. bottomNavigationBar: BottomSafeBar(
  36. selIndex: selIndex,
  37. ),
  38. ));
  39. }
  40. }
  41. class TopTab extends StatefulWidget {
  42. TopTab({Key key}) : super(key: key);
  43. _TopTabState createState() => _TopTabState();
  44. }
  45. class _TopTabState extends State<TopTab> with SingleTickerProviderStateMixin {
  46. @override
  47. void initState() {
  48. super.initState();
  49. }
  50. @override
  51. Widget build(BuildContext context) {
  52. RecommendProvider provider = Provider.of<RecommendProvider>(context);
  53. double rpx = MediaQuery.of(context).size.width / 750;
  54. return Row(
  55. crossAxisAlignment: CrossAxisAlignment.center,
  56. mainAxisAlignment: MainAxisAlignment.spaceBetween,
  57. children: [
  58. // BottomNavigationBar(items: [BottomNavigationBarItem(icon: null,)],)
  59. SizedBox(
  60. width: 17 * rpx,
  61. ),
  62. Icon(
  63. Icons.search,
  64. size: 50 * rpx,
  65. color: Colors.white,
  66. ),
  67. Container(
  68. child: Container(
  69. padding: EdgeInsets.symmetric(horizontal: 90 * rpx),
  70. width: 500 * rpx,
  71. child: TabBar(
  72. indicatorColor: Colors.white,
  73. labelStyle: TextStyle(color: Colors.white, fontSize: 20),
  74. indicatorPadding: EdgeInsets.symmetric(horizontal: 30),
  75. unselectedLabelStyle:
  76. TextStyle(color: Colors.grey[700], fontSize: 18),
  77. controller: provider.controller,
  78. tabs: <Widget>[Text("关注"), Text("推荐")],
  79. ))),
  80. Icon(
  81. Icons.live_tv,
  82. size: 30,
  83. color: Colors.white,
  84. ),
  85. SizedBox(
  86. width: 10,
  87. ),
  88. ],
  89. );
  90. }
  91. }