mirror of
https://github.com/haorendashu/nowser.git
synced 2025-12-17 18:04:18 +01:00
16 lines
347 B
Dart
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();
|
|
}
|
|
}
|