Files
rasadyar_application/packages/inspection/lib/presentation/widget/logo_widget.dart
mr.mojtaba fae6703d8d feat :
new auth page
2025-08-02 12:19:25 +03:30

24 lines
527 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: 120.w,
height: 120.h,
),
Text(
'سامانه رصدیار',
style: AppFonts.yekan16.copyWith(color: AppColor.darkGreyNormal),
),
],
);
}
}