|
- 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: <Widget>[
- SizedBox(
- height: 41,
- ),
- SizedBox(
- width: 172,
- child: FlutterLogo(
- size: 140,
- colors: Colors.green,
- ),
- ),
- SizedBox(
- height: 40,
- ),
- Text("Ứng dụng"),
- Text("Tiên Phong Farm"),
- SizedBox(
- height: 30,
- )
- ],
- );
- }
- }
|