added legal state bar content

This commit is contained in:
2024-03-26 20:50:57 +01:00
parent a718e02827
commit 10b0c59c3f
7 changed files with 155 additions and 34 deletions

11
lib/model/stateInfo.dart Normal file
View File

@ -0,0 +1,11 @@
import 'package:flutter/cupertino.dart';
class StateInfo {
IconData icon;
Color color;
String title;
String subtitle;
String description;
StateInfo({required this.icon, required this.color, required this.title, required this.subtitle, required this.description});
}