Add some helpers and wrappers, bump libac-dart dep

This commit is contained in:
zontreck 2025-05-25 00:53:04 -07:00
parent edca96f33f
commit 61a9ecd382
6 changed files with 63 additions and 9 deletions

View file

@ -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