169 похожих чатов

Class AllertPostWidget extends StatelessWidget { int personId; AllertPostWidget({Key?

key, required this.personId}) : super(key: key);
PostsController controller = Get.put(PostsController());

void addPost() {
if (controller.titleController.text.isEmpty ||
controller.bodyController.text.isEmpty) return;
var post = Post(
userId: personId,
title: controller.titleController.text,
body: controller.bodyController.text,
);
controller.titleController.text = '';
controller.bodyController.text = '';
controller.addPost(data: post);
}

@override
Widget build(BuildContext context) {
return ElevatedButton(
onPressed: () => showDialog<String>(
context: context,
builder: (BuildContext context) => AlertDialog(
title: Container(
height: 100,
child: TextFormField(
autofocus: true,
onEditingComplete: () {
controller.bodyFocus.requestFocus();
},
controller: controller.titleController,
decoration: const InputDecoration(
hintText: 'Title',
border: InputBorder.none,
)),
),
content: TextFormField(
controller: controller.bodyController,
focusNode: controller.bodyFocus,
maxLines: 5,
decoration: const InputDecoration(
hintText: 'Body',
border: InputBorder.none,
)),
actions: <Widget>[
TextButton(
onPressed: () => Navigator.pop(context, 'Cancel'),
child: const Text('Cancel'),
),
TextButton(
onPressed: () {
addPost();
Navigator.pop(context, 'Create');
},
child: const Text('Create'),
),
],
),
),
child: const Text('create post', style: TextStyle(color: Colors.black)),
);
}
}

2 ответов

11 просмотров

ММММ. Навигация из ui )

ММММ. Бизнес логика в onPressed )

Похожие вопросы

Обсуждают сегодня

а через ESC-код ?
Alexey Kulakov
29
30500 за редактор? )
Владимир
47
Чёт не понял, я ж правильной функцией воспользовался чтобы вывести отладочную информацию? но что-то она не ловится
notme
18
У меня есть функция где происходит это: write_bit(buffer, 1); write_bit(buffer, 0); write_bit(buffer, 1); write_bit(buffer, 1); write_bit(buffer, 1); w...
~
13
Недавно Google Project Zero нашёл багу в SQLite с помощью LLM, о чём достаточно было шумно в определённых интернетах, которые сопровождались рассказами, что скоро всех "ибешни...
Alex Sherbakov
5
Как передать управляющий символ в открытую через CreateProcess консоль? Собсна, есть процедура: procedure TRedirectThread.WriteData(Data: OEMString); var Written: Cardinal;...
Serjone
6
в JclConsole объявлено так: function CtrlHandler(CtrlType: DWORD): BOOL; stdcall; - где ваше объявление с stdcall? у вас на картинке нет stdcall
Karagy
8
Ребят в СИ можно реализовать ООП?
Николай
33
program test; {$mode delphi} procedure proc(v: int32); overload; begin end; procedure proc(v: int64); overload; begin end; var x: uint64; begin proc(x); end. Уж не знаю...
notme
6
https://github.com/erlang/otp/blob/OTP-27.1/lib/kernel/src/logger_h_common.erl#L174 https://github.com/erlang/otp/blob/OTP-27.1/lib/kernel/src/logger_olp.erl#L76 15 лет назад...
Maksim Lapshin
20
Карта сайта