Files
iroute/lib/v11/pages/login/login.dart
toly 7b16b52761 24
2023-12-10 15:25:12 +08:00

27 lines
675 B
Dart

import 'package:flutter/material.dart';
import 'package:go_router/go_router.dart';
class LoginPage extends StatelessWidget {
const LoginPage({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
Text('Login Page',style: TextStyle(fontSize: 24),),
const SizedBox(height: 20,),
ElevatedButton(onPressed: (){
GoRouter.of(context).go('/color');
// router.changePath('/app/color');
}, child: Text('点击进入'))
],
),
),
);
}
}