mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2024-11-10 09:07:47 +01:00
70 lines
2 KiB
Dart
70 lines
2 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:google_fonts/google_fonts.dart';
|
|
|
|
class SearchBar extends StatefulWidget {
|
|
String? hintText = "Search";
|
|
Color? backgroundColor;
|
|
Color? hintTextColor;
|
|
|
|
SearchBar({
|
|
required this.hintText,
|
|
this.backgroundColor = const Color(0xff1B222B),
|
|
this.hintTextColor = Colors.white,
|
|
Key? key,
|
|
required this.onQueryChanged,
|
|
}) : super(key: key);
|
|
|
|
final Function(String) onQueryChanged;
|
|
|
|
@override
|
|
State<SearchBar> createState() => _SearchBarState();
|
|
}
|
|
|
|
class _SearchBarState extends State<SearchBar> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container(
|
|
decoration: BoxDecoration(
|
|
borderRadius: BorderRadius.circular(12),
|
|
color: widget.backgroundColor,
|
|
border: Border.all(
|
|
color: widget.backgroundColor != null ? widget.backgroundColor! : Colors.white,
|
|
width: 1,
|
|
),
|
|
),
|
|
child: Row(
|
|
children: [
|
|
Expanded(
|
|
child: TextField(
|
|
onChanged: widget.onQueryChanged,
|
|
decoration: InputDecoration(
|
|
fillColor: Colors.blueGrey[700],
|
|
filled: true,
|
|
contentPadding: const EdgeInsets.all(12.0),
|
|
hintText: widget.hintText,
|
|
hintStyle: GoogleFonts.poppins(
|
|
color: widget.hintTextColor,
|
|
fontWeight: FontWeight.w400,
|
|
),
|
|
prefixIcon: const Icon(
|
|
Icons.search,
|
|
color: Colors.white,
|
|
size: 24.0,
|
|
),
|
|
border: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(10),
|
|
borderSide: BorderSide.none,
|
|
),
|
|
),
|
|
style: GoogleFonts.poppins(
|
|
color: Colors.white,
|
|
fontWeight: FontWeight.w400,
|
|
fontSize: 16,
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|