index.dart 841B

123456789101112131415161718192021222324252627282930313233343536
  1. import 'package:flutter/material.dart';
  2. import 'package:flutter_screenutil/flutter_screenutil.dart';
  3. class MoreCars extends StatefulWidget {
  4. const MoreCars({Key? key}) : super(key: key);
  5. @override
  6. State<MoreCars> createState() => _MoreCarsState();
  7. }
  8. class _MoreCarsState extends State<MoreCars> {
  9. @override
  10. Widget build(BuildContext context) {
  11. return Scaffold(
  12. resizeToAvoidBottomInset: false,
  13. appBar: AppBar(
  14. elevation: 0,
  15. centerTitle: true,
  16. backgroundColor: Colors.white,
  17. title: Text(
  18. '更多',
  19. style: TextStyle(
  20. color: Colors.black,
  21. fontSize: 17.sp,
  22. letterSpacing: 2,
  23. fontWeight: FontWeight.bold),
  24. ),
  25. ),
  26. body: Container(
  27. child: Text('wwwwwwwwwww'),
  28. ),
  29. );
  30. }
  31. }