Init snippet page and store

This commit is contained in:
LollipopKit
2021-10-31 15:22:05 +08:00
parent 9f3f07388e
commit 2eb6e19a86
8 changed files with 114 additions and 4 deletions

View File

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