代码格式优化完毕

This commit is contained in:
toly
2022-03-26 21:25:40 +08:00
parent 36b5adbd7b
commit 59f8125e1a
265 changed files with 1684 additions and 1494 deletions

View File

@@ -14,12 +14,14 @@ import 'package:flutter/material.dart';
// "【index】 : 当前显示组件 【int】",
// }
class CustomIndexedStack extends StatefulWidget {
const CustomIndexedStack({Key? key}) : super(key: key);
@override
_CustomIndexedStackState createState() => _CustomIndexedStackState();
}
class _CustomIndexedStackState extends State<CustomIndexedStack> {
var _index = 1;
int _index = 1;
@override
Widget build(BuildContext context) {
@@ -36,7 +38,7 @@ class _CustomIndexedStackState extends State<CustomIndexedStack> {
Container(
color: Colors.red,
width: 80,
height: 80,
height: 80
),
Positioned(
bottom: 10,