how to achieve this view using dialog or widget : flutter
I'm working on a view which have a list of coupon and when I select any coupon then a dialog will appear where we can check coupon details. My query is how to show a dialog which is a half…
I'm working on a view which have a list of coupon and when I select any coupon then a dialog will appear where we can check coupon details. My query is how to show a dialog which is a half…
I need to show two ListViews inside a dialog; I am using the showDialog function and in the "content" attribute I added a "SizedBox" without any value for the "height" attribute, and the lists are inside the Column object. Here…
How can I to close all the showDialogs in my aplication? in this case _mostrarDialogConfirmacion is the dialog where i request to the user a confirmation to make a query, cargandoDialog is another dialog where i show a loading message…
I started learning about how to create our own npm package and i created one. Now in this package, i want to create a dialog box for react native apps using typescript. Here are my files; Package.json { "name": "rn-dialog",…
I made a keyboard with a key view. I want a preview to appear above each key of the keyboard without distorting the keyboard layout. I made the Key view with a constraint layout and two card views: <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"…
I create dialog with custom button UIButton in swift IOS. How can change UIButton size programmatically. class SuccessMessageView: UIView, UITextFieldDelegate { private var buttonConfirm : UIButton = { let button = UIButton() button.setTitle("Ok", for: .normal) button.backgroundColor = UIColor(rgb: PreferenceManager.shared.hasDevice() ?…
I am trying to create a very simple dialog box. I found the code references from the internet obviously. My code is this: AlertDialog.Builder alertDialog = new AlertDialog.Builder( ConsignmentConViewActivity.this); alertDialog.setTitle("Alert Dialog"); alertDialog.setMessage("Welcome to AndroidHive.info"); alertDialog.setPositiveButton("OK", new DialogInterface.OnClickListener() { public void…
I am trying to apply the following in order to help blur the background behind my dialog box which currently has a transparent background: Blur Background Behind AlertDialog Only issue is, when the following section of code is applied inside…
I want to make a custom dialog that I can re-use to configure some parameters. I added a default hint that I want to modify each time the user opens the Dialog. <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:orientation="vertical" android:layout_width="match_parent"…
HTML heading tags should be used in a way that maintains semantic structure (for both SEO and accessibility). Generally this means a single <h1> for the current page heading, with lesser headings nested from there. However dialogs are often created…