Porgress use dynamic color

This commit is contained in:
LollipopKit
2021-11-01 15:26:29 +08:00
parent 1cd69c8f44
commit e7d87b40b8
11 changed files with 40 additions and 31 deletions

View File

@@ -1,7 +1,7 @@
import 'package:flutter/material.dart';
class SnappetListPage extends StatefulWidget {
const SnappetListPage({ Key? key }) : super(key: key);
const SnappetListPage({Key? key}) : super(key: key);
@override
_SnappetListPageState createState() => _SnappetListPageState();
@@ -10,8 +10,6 @@ class SnappetListPage extends StatefulWidget {
class _SnappetListPageState extends State<SnappetListPage> {
@override
Widget build(BuildContext context) {
return Container(
);
return Container();
}
}
}