We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 407cf2d commit 34e2e2bCopy full SHA for 34e2e2b
packages/better_ui/lib/src/layout/bottom.dart
@@ -1,35 +1,4 @@
1
-import 'package:flutter/cupertino.dart';
2
-
3
-import '../../better_ui.dart';
4
5
///
6
7
8
-class BetterBottom {
9
- ///
10
- Widget classicListView() {
11
- return Container();
12
- }
13
14
15
- /// 居中:
16
17
- Widget classic({required String title, void Function()? backFn}) {
18
- return AppBar(
19
- title: Text(title),
20
- centerTitle: true,
21
- leading: IconButton(
22
- icon: Icon(Icons.arrow_back_ios),
23
- onPressed: () {
24
- /// before back
25
- backFn!();
26
27
- Get.back();
28
- },
29
- ),
30
- );
31
32
33
34
35
-}
+class BetterBottom {}
0 commit comments