wip: add easy_localization.

This commit is contained in:
2021-09-23 18:40:12 +08:00
parent aa2454553c
commit aa2f50233f
14 changed files with 160 additions and 95 deletions
+33
View File
@@ -0,0 +1,33 @@
import 'package:dde_gesture_manager/widgets/footer.dart';
import 'package:flutter/material.dart';
class HomePage extends StatefulWidget {
const HomePage({Key? key}) : super(key: key);
@override
_HomePageState createState() => _HomePageState();
}
class _HomePageState extends State<HomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
body: Column(
mainAxisSize: MainAxisSize.max,
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Row(
mainAxisSize: MainAxisSize.max,
children: [
Text('asd'),
],
),
SizedBox(
height: 32,
child: Footer(),
),
],
),
);
}
}