30 lines
667 B
Dart
30 lines
667 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class AboutPage extends StatefulWidget {
|
|
const AboutPage({super.key});
|
|
final String title = "about";
|
|
|
|
@override
|
|
State<AboutPage> createState() => _AboutPage();
|
|
}
|
|
|
|
class _AboutPage extends State<AboutPage> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Center(
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: <Widget>[
|
|
const Text(
|
|
'You have pushed the button this many times:',
|
|
),
|
|
Text(
|
|
'test',
|
|
style: Theme.of(context).textTheme.headlineMedium,
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|