Row1 Flutter row widget 설명 저번에 올린 Flutter column widget 설명에 이어이번에는 Row widget에 대해 간략하게 설명하겠습니다.Column widget은 열로 나열하는 위젯이었으면Row widget은 행으로 나열되는 위젯입니다.예시 코드를 보면 이렇습니다.class MyHomePage extends StatelessWidget { const MyHomePage({super.key}); @override Widget build(BuildContext context) { return Scaffold( body: SafeArea( child: Row( children: [ Text('A'), Text('B'), .. 2024. 9. 29. 이전 1 다음