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: 80, ), SizedBox( width: 172, child: FlutterLogo( size: 140, ), ), SizedBox( height: 80, ), ], ); } }