Files
nowser/lib/router/index/index_web_bottom_component.dart
2024-08-23 11:53:14 +08:00

16 lines
347 B
Dart

import 'package:flutter/material.dart';
class IndexWebBottomComponent extends StatefulWidget {
@override
State<StatefulWidget> createState() {
return _IndexWebBottomComponent();
}
}
class _IndexWebBottomComponent extends State<IndexWebBottomComponent> {
@override
Widget build(BuildContext context) {
return Container();
}
}