TextSearchRF constructor
const
TextSearchRF({
- Key? key,
- required double Height,
- required String Title,
- required MapControllerRF Controller,
- VoidCallback? OnTap,
- double Radius = 32,
- double Width = 300,
- Icon icon = const Icon(Icons.search, size: 24),
- TextStyle Style = const TextStyle(fontSize: 20, color: Colors.black, fontWeight: FontWeight.bold),
- Color color = Colors.white,
Implementation
const TextSearchRF(
{super.key,
required this.Height,
required this.Title,
required this.Controller,
this.OnTap,
this.Radius = 32,
this.Width = 300,
this.icon = const Icon(
Icons.search,
size: 24,
),
this.Style = const TextStyle(
fontSize: 20, color: Colors.black, fontWeight: FontWeight.bold),
this.color = Colors.white});