#flutter #menu #dialog #popup #popupmenu
#flutter #меню #диалоговое окно #всплывающее окно #всплывающее меню
Вопрос:
В моем приложении у меня есть это всплывающее меню, в котором есть пара триггеров, хотя из приложения. Итак, я попытался сделать его отдельным файлом, а затем вызвать его, когда мне это понадобится.
Похоже, это не работает. Мне нужно сделать это с пользовательским текстом, который я определяю при вызове класса. Итак, скажем, что текст информации должен быть X, когда вы нажимаете на кнопку, и Y на другой.
Файл PopupMenu:
import [...]
void customWebLaunch(command) async {
[...]
}
class PopUpMenu extends StatelessWidget {
final String title;
final String info;
const PopUpMenu({Key key, @required this.title, @required this.info})
: assert(title != null),
super(key: key);
@override
Widget build(BuildContext context) {
return Dialog(
shape: RoundedRectangleBorder (
borderRadius: BorderRadius.circular(borderRadius*3/2),
),
child: [...]
);
}
}
Я также попробовал это, но тогда я не смог ввести пользовательский заголовок и текст:
[under Widget build{ [...] }]
sendEmailPopUp(BuildContext context) {
showDialog(
context: context,
builder: (BuildContext context){
return Dialog(
shape: RoundedRectangleBorder (
borderRadius: BorderRadius.circular(borderRadius*3/2),
),
child: [...]
);
}
);
}
Комментарии:
1. Когда вы говорите «похоже, это не работает», не могли бы вы предоставить более подробную информацию? Похоже, что с кодом все в порядке.
2. Привет, пожалуйста, проверьте ответ.
Ответ №1:
Вы можете проверить приведенный ниже код.
class test {
final BuildContext context;
final bool crossButton;
// ignore: non_constant_identifier_names
final bool cross_Button_Left;
final double message_to_button_gap;
test({
Key key,
@required this.context,
this.crossButton = false,
this.cross_Button_Left = false,
this.message_to_button_gap = 18.0,
});
@override
Future show() => showDialog(
context: this.context,
builder: (BuildContext context) {
return Theme(
data: ThemeData(dialogBackgroundColor: Colors.lightGreenAccent),
child: AlertDialog(
elevation: 10,
clipBehavior: Clip.antiAliasWithSaveLayer,
title: Column(
children: <Widget>[
crossButton
? Align(
alignment: cross_Button_Left
? Alignment.topRight
: Alignment.topLeft,
child: InkWell(
child: Icon(Icons.close),
onTap: () {
Navigator.pop(context);
},
),
)
: Container(),
crossButton
? SizedBox(
height: 20,
width: 8,
)
: Container(),
Icon(
Icons.dashboard,
color: Colors.red,
size: 22,
),
SizedBox(
height: 8,
width: 8,
),
new Text(
"message",
style: TextStyle(fontSize: 22, color: Colors.black),
),
SizedBox(
height: message_to_button_gap,
width: 8,
),
FloatingActionButton.extended(
onPressed: () async {
Navigator.pop(context);
},
backgroundColor: Color(0xff8154b7),
label: Text(
"buttonName",
style: TextStyle(color: Color(0xff230238)),
),
),
],
),
),
);
});
}
И вызовите его из другого файла, как показано ниже.
RaisedButton(
child: Text("abc"),
onPressed: () {
PositiveAlert(context: context, messageIcon: false).show();
},
)
Комментарии:
1. Вау, большое спасибо 🙂 Сработало на 100%. Я не указал, каким конкретно должно быть мое меню, но я мог бы легко модифицировать ваше всплывающее меню в соответствии с моими потребностями 🙂