Files
iroute/lib/v9/pages/login/login.dart
toly 5396712cf9 v9
2023-11-11 11:37:41 +08:00

25 lines
642 B
Dart

import 'package:flutter/material.dart';
import '../../app/navigation/router/app_router_delegate.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: (){
router.changePath('/app/color');
}, child: Text('点击进入'))
],
),
),
);
}
}