mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 07:14:28 +01:00
17 lines
380 B
Dart
17 lines
380 B
Dart
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(
|
|
|
|
);
|
|
}
|
|
} |