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 SnappetEditPage extends StatefulWidget {
const SnappetEditPage({ Key? key }) : super(key: key);
@override
_SnappetEditPageState createState() => _SnappetEditPageState();
}
class _SnappetEditPageState extends State<SnappetEditPage> {
@override
Widget build(BuildContext context) {
return Container(
);
}
}