Код: Выделить всё
import 'package:flutter/material.dart';
class MyHomePage extends StatelessWidget {
const MyHomePage({super.key});
@override
Widget build(BuildContext context) {
return Container(
width: 30,
height: 30,
decoration: BoxDecoration(
color: Colors.blue,
),
);
}
}
Подробнее здесь: https://stackoverflow.com/questions/791 ... of-maintai