30 lines
916 B
Dart
30 lines
916 B
Dart
import 'package:auto_size_text/auto_size_text.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
|
|
|
class LogoSatu extends StatelessWidget {
|
|
const LogoSatu({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Padding(
|
|
padding: EdgeInsets.all(50.0.sp),
|
|
child: SizedBox(
|
|
width: 185.w,
|
|
child: Column(
|
|
mainAxisSize: MainAxisSize.max,
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
children: <Widget>[
|
|
SizedBox(
|
|
height: 75.h,
|
|
child: Image.asset('assets/images/logo.png'),
|
|
),
|
|
AutoSizeText('Товароучетная система', style: TextStyle(fontSize: 16.sp, fontWeight: FontWeight.w400 ), )
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|