mirror of
https://github.com/asjqkkkk/flutter-todos.git
synced 2025-08-06 14:19:24 +08:00
14 lines
311 B
Dart
14 lines
311 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class SearchBarWidget extends StatefulWidget {
|
|
@override
|
|
_SearchBarWidgetState createState() => _SearchBarWidgetState();
|
|
}
|
|
|
|
class _SearchBarWidgetState extends State<SearchBarWidget> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container();
|
|
}
|
|
}
|