Implemented player panel
This commit is contained in:
parent
a0896d99eb
commit
e7e052e3a1
12 changed files with 396 additions and 24 deletions
17
lib/models/settings_item_model.dart
Normal file
17
lib/models/settings_item_model.dart
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
import 'package:flutter/material.dart';
|
||||
|
||||
class SettingsItemModel {
|
||||
final IconData icon;
|
||||
final Color color;
|
||||
final String title;
|
||||
final String description;
|
||||
final VoidCallback? onTap;
|
||||
|
||||
const SettingsItemModel({
|
||||
required this.color,
|
||||
required this.description,
|
||||
required this.icon,
|
||||
required this.title,
|
||||
this.onTap,
|
||||
});
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue