SameCityPage.dart 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. import 'package:douyin_demo/widgets/BottomBar.dart';
  2. import 'package:flutter/material.dart';
  3. class SameCityMain extends StatelessWidget {
  4. const SameCityMain({Key key,this.selIndex}) : super(key: key);
  5. final int selIndex;
  6. @override
  7. Widget build(BuildContext context) {
  8. double rpx=MediaQuery.of(context).size.width/750;
  9. return Scaffold(
  10. backgroundColor: Theme.of(context).primaryColor,
  11. appBar: AppBar(
  12. title: Text("同城"),
  13. ),
  14. bottomNavigationBar: Container(
  15. decoration: BoxDecoration(color: Colors.black),
  16. child: SafeArea(
  17. child: BtmBar(selectIndex:selIndex)
  18. )
  19. ),
  20. body: Column(
  21. children: <Widget>[
  22. Container(
  23. height: 120*rpx,
  24. padding: EdgeInsets.all(20*rpx),
  25. child: Row(
  26. mainAxisAlignment: MainAxisAlignment.spaceBetween,
  27. children: <Widget>[
  28. Row(
  29. children: <Widget>[
  30. Icon(Icons.near_me,color: Colors.grey[400],),
  31. Text("自动定位 :上海",style: TextStyle(color: Colors.grey[400]),),
  32. ],
  33. ),
  34. Row(
  35. children: <Widget>[Text("切换",style: TextStyle(color: Colors.grey[400])), Icon(Icons.arrow_right,color: Colors.grey[400])],
  36. ),
  37. ],
  38. )
  39. ),
  40. ],
  41. ),
  42. );
  43. }
  44. }