recommend_page.dart 2.8 KB

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