index_page.dart 514 B

123456789101112131415161718192021222324
  1. import 'package:flutter/material.dart';
  2. class IndexPage extends StatefulWidget {
  3. const IndexPage({super.key});
  4. @override
  5. State<IndexPage> createState() => _IndexPageState();
  6. }
  7. class _IndexPageState extends State<IndexPage> {
  8. @override
  9. Widget build(BuildContext context) {
  10. return Scaffold(
  11. appBar: AppBar(
  12. title: Text("x"),
  13. centerTitle: true,
  14. actions: [Text("LOgin")],
  15. ),
  16. body: Text("body"),
  17. // bottomNavigationBar: ,
  18. // drawer: ,
  19. );
  20. }
  21. }