Add some helpers and wrappers, bump libac-dart dep
This commit is contained in:
parent
edca96f33f
commit
61a9ecd382
6 changed files with 63 additions and 9 deletions
|
@ -1,11 +1,11 @@
|
|||
import 'package:flutter/material.dart';
|
||||
|
||||
class Alert extends StatelessWidget {
|
||||
String title;
|
||||
String body;
|
||||
Function()? dismissAction;
|
||||
final String title;
|
||||
final String body;
|
||||
final Function()? dismissAction;
|
||||
|
||||
Alert(
|
||||
const Alert(
|
||||
{required this.title, required this.body, super.key, this.dismissAction});
|
||||
|
||||
@override
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue