mirror of
https://github.com/qinglong-app/qinglong_app.git
synced 2025-10-09 16:48:19 +08:00
16 lines
336 B
Dart
16 lines
336 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class ConfigPage extends StatefulWidget {
|
|
const ConfigPage({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
_ConfigPageState createState() => _ConfigPageState();
|
|
}
|
|
|
|
class _ConfigPageState extends State<ConfigPage> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold();
|
|
}
|
|
}
|