开始学习 UI 布局

This commit is contained in:
qwe
2026-05-26 00:01:15 +08:00
parent 94896df433
commit 97c88862ec
6 changed files with 575 additions and 5 deletions

View File

@@ -1,5 +1,7 @@
import 'package:flutter/material.dart';
import 'container.dart';
void main() {
runApp(const MyApp());
}
@@ -30,7 +32,7 @@ class MyApp extends StatelessWidget {
// tested with just a hot reload.
colorScheme: .fromSeed(seedColor: Colors.deepPurple),
),
home: const MyHomePage(title: 'Flutter Demo Home Page'),
home: ZContainer(),
);
}
}