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