import 'package:flutter/material.dart';
class TestScreen extends StatefulWidget {
const TestScreen({super.key});
@override
State createState() => _TestScreenState();
}
class _TestScreenState extends State {
@override
Widget build(BuildContext context) {
return Column(
spacing: 20,
children: [
Row(
spacing: 20,
children: [],
)
],
);
}
}
Flutter 3.2.7 o'tishimga sabablaridan biri endi har bir Colum bilan row ishlatganda har bir elemt orasiga son berib chiqardik oldin endi esa spacing widgetni qo'shipti google
class TestScreen extends StatefulWidget {
const TestScreen({super.key});
@override
State createState() => _TestScreenState();
}
class _TestScreenState extends State {
@override
Widget build(BuildContext context) {
return Column(
spacing: 20,
children: [
Row(
spacing: 20,
children: [],
)
],
);
}
}
Flutter 3.2.7 o'tishimga sabablaridan biri endi har bir Colum bilan row ishlatganda har bir elemt orasiga son berib chiqardik oldin endi esa spacing widgetni qo'shipti google