CAKE-345 | removed isAddReceiverButtonEnabled from send_view_model.dart; fixed height of send card

This commit is contained in:
OleksandrSobol 2021-07-23 09:31:35 +03:00
parent a1c6b0be3f
commit d582f89c7d
3 changed files with 4 additions and 8 deletions

View file

@ -79,7 +79,7 @@ class SendPage extends BasePage {
content: Column(
children: <Widget>[
Container(
height: 470,
height: sendViewModel.isElectrumWallet ? 470 : 445,
child: Observer(
builder: (_) {
return PageView.builder(
@ -259,7 +259,7 @@ class SendPage extends BasePage {
EdgeInsets.only(left: 24, right: 24, bottom: 24),
bottomSection: Column(
children: [
if (sendViewModel.isAddReceiverButtonEnabled) Padding(
if (sendViewModel.isElectrumWallet) Padding(
padding: EdgeInsets.only(bottom: 12),
child: PrimaryButton(
onPressed: () {

View file

@ -80,7 +80,7 @@ class SendCardState extends State<SendCard>
)
]),
child: Container(
height: 470,
height: sendViewModel.isElectrumWallet ? 470 : 445,
decoration: BoxDecoration(
borderRadius: BorderRadius.only(
bottomLeft: Radius.circular(24),

View file

@ -44,8 +44,6 @@ abstract class SendViewModelBase with Store {
sendItemList = ObservableList<SendItem>()
..add(SendItem(_wallet, _settingsStore, _fiatConversationStore));
isElectrumWallet = _wallet is ElectrumWallet;
}
@observable
@ -53,8 +51,6 @@ abstract class SendViewModelBase with Store {
ObservableList<SendItem> sendItemList;
bool isElectrumWallet;
@action
void addSendItem() {
sendItemList.add(SendItem(_wallet, _settingsStore, _fiatConversationStore));
@ -132,7 +128,7 @@ abstract class SendViewModelBase with Store {
ObservableList<Template> get templates => sendTemplateViewModel.templates;
@computed
bool get isAddReceiverButtonEnabled => _wallet is ElectrumWallet;
bool get isElectrumWallet => _wallet is ElectrumWallet;
WalletType get walletType => _wallet.type;
final WalletBase _wallet;