Refactor DashBot

This commit is contained in:
Ankit Mahato
2025-09-29 07:25:22 +05:30
parent bd86a71fa8
commit f38ee9f5bf
130 changed files with 391 additions and 521 deletions

View File

@@ -0,0 +1,15 @@
import 'package:flutter/widgets.dart';
class DashbotIcons {
DashbotIcons._();
static String get dashbotIcon1 => 'assets/dashbot/dashbot_icon_1.png';
static String get dashbotIcon2 => 'assets/dashbot/dashbot_icon_2.png';
static Image getDashbotIcon1({double? width, double? height, BoxFit? fit}) {
return Image.asset(dashbotIcon1, width: width, height: height, fit: fit);
}
static Image getDashbotIcon2({double? width, double? height, BoxFit? fit}) {
return Image.asset(dashbotIcon2, width: width, height: height, fit: fit);
}
}