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