16 lines
339 B
Dart
16 lines
339 B
Dart
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
class customWidgets extends StatefulWidget {
|
||
|
const customWidgets({super.key});
|
||
|
|
||
|
@override
|
||
|
State<customWidgets> createState() => _customWidgetsState();
|
||
|
}
|
||
|
|
||
|
class _customWidgetsState extends State<customWidgets> {
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return Container();
|
||
|
}
|
||
|
}
|