mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 07:14:28 +01:00
Init snippet page and store
This commit is contained in:
17
lib/view/page/snippet/edit.dart
Normal file
17
lib/view/page/snippet/edit.dart
Normal 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(
|
||||
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user