import 'package:flutter/material.dart';

void main() {
runApp(MaterialApp(
home: SafeArea(
child: Scaffold(
appBar: AppBar(
backgroundColor: Colors.blue,
title: const Text("Tự học lập trình"),
),
body: const Mywidget()
)
),
debugShowCheckedModeBanner: false,
),
);
}

class Mywidget extends StatelessWidget{
const Mywidget({super.key});

@override
Widget build(BuildContext context) {
return const Text('Trần Minh Thái',
textAlign: TextAlign.justify,
maxLines: 3,
overflow: TextOverflow.ellipsis,
textScaleFactor: 1.5,
style: TextStyle(
color: Colors.blue,
fontSize: 14,
),);
}
}