21 lines
497 B
Dart
21 lines
497 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(),
|
|
Image.asset(Assets.imagesInnerSplash, width: 120, height: 120),
|
|
Text(
|
|
'سامانه رصدیار',
|
|
style: AppFonts.yekan16.copyWith(color: AppColor.darkGreyNormal),
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|