Files
rasadyar_application/packages/auth/lib/presentation/widget/logo_widget.dart
mr.mojtaba 905e407ccd fix :
1 - multi module in Auth select save selected module
 2 - add flutter gen for assets builder
2025-05-19 16:16:33 +03:30

24 lines
523 B
Dart

import 'package:flutter/material.dart';
import 'package:rasadyar_core/core.dart';
class LogoWidget extends StatelessWidget {
const LogoWidget({super.key});
@override
Widget build(BuildContext context) {
return Column(
children: [
Row(),
Assets.images.innerSplash.image(
width: 150,
height: 150,
),
Text(
'سامانه رصدیار',
style: AppFonts.yekan16.copyWith(color: AppColor.darkGreyNormal),
),
],
);
}
}