mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 07:14:28 +01:00
16 lines
465 B
Dart
16 lines
465 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class SnippetEditPage extends StatefulWidget {
|
|
const SnippetEditPage({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
_SnippetEditPageState createState() => _SnippetEditPageState();
|
|
}
|
|
|
|
class _SnippetEditPageState extends State<SnippetEditPage> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(appBar: AppBar(title: const Text('Snippet Edit'),), body: const Center(child: Text('Developing'),),);
|
|
}
|
|
}
|