mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 20:39:51 +00:00
* Add initial checkbox for RBF * minor progress * minor progress * Minor progress * Debugging RBF * Minor fix * Fix RBF transaction inputs (now it's working) * New versions Fix issues with Monero.com * Add sending for Solana tokens exchanges * Add default keyword for P2WPKH [skip ci] * chore: Switch solana commitment to confirmed to reduced blockhash expiration (#1313) * Modify test workflow to send arm64-v8a build only * Fix workflow build path * Remove unnecessary reverse of txId * Update Replace by fee with the new bitcoin base implementation * btc custom fee priority * add feeRate to btc credential * UI fixes * add check if the change covers the fee * Update settings_store.dart * add check confirmation for rbf * add a check to see if the change is sufficient for the new fee * addressing PR comments * update localization files * addressing PR comments * minor fixes * Update transaction_details_view_model.dart * Minor Fix for building Monero.com [skip ci] * update localization files * add bump fee page * update localisation files * Update cw_bitcoin.dart * fix merge conflict * fix UI issues * Fix Conflicts, Fix RBF flow, some enhancements * prevent default custom fee rate * hide outputs and inputs items * minor fix [skip ci] * addressing PR comments * remove rbf checkbox * default picker value * minor ui change [skip ci] * min fee rate [skip ci] * Minor fix and some minor enhancements --------- Co-authored-by: OmarHatem <omarh.ismail1@gmail.com> Co-authored-by: Adegoke David <64401859+Blazebrain@users.noreply.github.com>
44 lines
1.7 KiB
Dart
44 lines
1.7 KiB
Dart
import 'package:cake_wallet/themes/extensions/picker_theme.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:cake_wallet/generated/i18n.dart';
|
|
|
|
class SearchBarWidget extends StatelessWidget {
|
|
const SearchBarWidget({
|
|
required this.searchController,
|
|
this.hintText,
|
|
this.borderRadius = 14,
|
|
});
|
|
|
|
final TextEditingController searchController;
|
|
final String? hintText;
|
|
final double borderRadius;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return TextFormField(
|
|
controller: searchController,
|
|
style: TextStyle(color: Theme.of(context).extension<PickerTheme>()!.searchHintColor),
|
|
decoration: InputDecoration(
|
|
hintText: hintText ?? S.of(context).search,
|
|
hintStyle: TextStyle(color: Theme.of(context).extension<PickerTheme>()!.searchHintColor),
|
|
prefixIcon: Image.asset("assets/images/search_icon.png",
|
|
color: Theme.of(context).extension<PickerTheme>()!.searchIconColor),
|
|
filled: true,
|
|
fillColor: Theme.of(context).extension<PickerTheme>()!.searchBackgroundFillColor,
|
|
alignLabelWithHint: false,
|
|
contentPadding: const EdgeInsets.symmetric(vertical: 4, horizontal: 16),
|
|
enabledBorder: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(borderRadius),
|
|
borderSide: BorderSide(
|
|
color: Theme.of(context).extension<PickerTheme>()!.searchBorderColor ??
|
|
Colors.transparent,
|
|
)),
|
|
focusedBorder: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(borderRadius),
|
|
borderSide: const BorderSide(
|
|
color: Colors.transparent,
|
|
)),
|
|
),
|
|
);
|
|
}
|
|
}
|