введите описание изображения здесь
Код: Выделить всё
class MyHomePage extends StatelessWidget {
final String title; //
MyHomePage({required this.title});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(
title,
),
),
body: Center(
// child: Image.asset('images/tree.jpg'),
child: Text(
'Hello, Text Widget',
style: TextStyle(
fontSize: 25,
color: Colors.purple,
),
),
),
);
}
}
Я новичок
Подробнее здесь: https://stackoverflow.com/questions/758 ... mmar-below