Örnek Çalışmalar
1 dk okuma
Netflix Intro Animation
K
KustaSoft Admin
28 Nisan 2024
🌟 Netflix Intro Animation
🌟 Netflix Intro Animation
✍: HTML, CSS, JS
class AndroidAlertDialog extends CustomDialog {
@override
String getTitle() {
return 'Android Alert Dialog';
}
@override
Widget create(BuildContext context) {
return AlertDialog(
title: Text(getTitle()),
content: const Text('This is the material-style alert dialog!'),
actions: [
TextButton(
onPressed: () {
Navigator.of(context).pop();
},
child: const Text('Close'),
),
],
);
}
}