123456789101112131415161718192021222324 |
- import 'package:flutter/material.dart';
- class IndexPage extends StatefulWidget {
- const IndexPage({super.key});
- @override
- State<IndexPage> createState() => _IndexPageState();
- }
- class _IndexPageState extends State<IndexPage> {
- @override
- Widget build(BuildContext context) {
- return Scaffold(
- appBar: AppBar(
- title: Text("x"),
- centerTitle: true,
- actions: [Text("LOgin")],
- ),
- body: Text("body"),
- // bottomNavigationBar: ,
- // drawer: ,
- );
- }
- }
|