stack_wallet/lib/widgets/app_bar_field.dart
2024-05-27 18:01:41 -06:00

56 lines
1.4 KiB
Dart

/*
* This file is part of Stack Wallet.
*
* Copyright (c) 2023 Cypher Stack
* All Rights Reserved.
* The code is distributed under GPLv3 license, see LICENSE file for details.
* Generated by Cypher Stack on 2023-05-26
*
*/
import 'package:flutter/material.dart';
import '../utilities/text_styles.dart';
class AppBarSearchField extends StatefulWidget {
const AppBarSearchField({
super.key,
required this.controller,
this.focusNode,
});
final TextEditingController? controller;
final FocusNode? focusNode;
@override
State<AppBarSearchField> createState() => _AppBarSearchFieldState();
}
class _AppBarSearchFieldState extends State<AppBarSearchField> {
@override
Widget build(BuildContext context) {
return Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
const SizedBox(
width: 16,
),
Expanded(
child: TextField(
autofocus: true,
focusNode: widget.focusNode,
controller: widget.controller,
style: STextStyles.field(context),
decoration: InputDecoration(
fillColor: Colors.transparent,
hintText: "Search...",
hintStyle: STextStyles.fieldLabel(context),
border: InputBorder.none,
enabledBorder: InputBorder.none,
focusedBorder: InputBorder.none,
),
),
),
],
);
}
}