mirror of
https://github.com/Linloir/Simple-TCP-Client.git
synced 2025-12-18 09:18:11 +08:00
18 lines
318 B
Dart
18 lines
318 B
Dart
/*
|
|
* @Author : Linloir
|
|
* @Date : 2022-10-13 17:06:52
|
|
* @LastEditTime : 2022-10-13 17:06:53
|
|
* @Description :
|
|
*/
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
class SearchBar extends StatelessWidget {
|
|
const SearchBar({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return
|
|
}
|
|
}
|