54 lines
1.1 KiB
Dart
54 lines
1.1 KiB
Dart
import 'package:flutter/material.dart';
|
|
|
|
///登陆Box
|
|
class LogoBox extends StatelessWidget {
|
|
const LogoBox({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container(
|
|
margin: EdgeInsets.only(bottom: 40),
|
|
child: Column(
|
|
children: [
|
|
ClipRRect(
|
|
borderRadius: BorderRadius.circular(5),
|
|
child: Image.asset(
|
|
"assets/image/logo.png",
|
|
width: 43,
|
|
),
|
|
),
|
|
Text(
|
|
"PlanCura",
|
|
style: Theme.of(context).textTheme.titleSmall,
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
///头部文案
|
|
class PageHeader extends StatelessWidget {
|
|
const PageHeader({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container(
|
|
margin: EdgeInsets.only(bottom: 30),
|
|
child: Column(
|
|
children: [
|
|
Text(
|
|
"Create an account",
|
|
style: TextStyle(fontWeight: FontWeight.w700),
|
|
),
|
|
Text(
|
|
"Use your email to get started",
|
|
style: Theme.of(context).textTheme.bodySmall,
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|