8e428f55d6
- Updated import path for the login screen. - Removed the AppStrings class from constants as it has been integrated into core constants. - Deleted unused files related to the home page and login components, including progress bars, statistics cards, and tenders list items. - Cleaned up widget imports in the login screen to streamline the codebase.
14 lines
336 B
Dart
14 lines
336 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
import '../../../core/constants/assets.dart';
|
|
import '../../../size_config.dart';
|
|
|
|
class LoginLogo extends StatelessWidget {
|
|
const LoginLogo({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Image.asset(AssetsManager.logo, width: 190.0.w(), height: 88.0.h());
|
|
}
|
|
}
|