import 'package:farm_tpf/utils/const_color.dart'; import 'package:flutter/material.dart'; class WidgetTopWelcome extends StatelessWidget { @override Widget build(BuildContext context) { return Column( children: [ SizedBox( height: 41, ), SizedBox( width: 172, child: FlutterLogo( size: 140, colors: Colors.green, ), ), SizedBox( height: 40, ), Text("Ứng dụng"), Text("Mô tả chi tiết ứng dụng"), SizedBox( height: 30, ) ], ); } }