flutter 내 지갑 만들기 (알면 좋은거)
플러터로 내 지갑 만들면서 알게 된 것들플러터로 "내 지갑" 프로젝트를 만들면서 배운 개념들을 정리해봤다. 1. Row랑 Column → 축 개념 Row → 가로 연결, MainAxis(주축) = 가로, CrossAxis(교차축) = 세로Column → 세로 연결, MainAxis(주축) = 세로, CrossAxis(교차축) = 가로쉽게 말해, Row는 좌우로 연결되고, Column은 위아래로 연결된다.Row( mainAxisAlignment: MainAxisAlignment.center, // 가로 방향 정렬 crossAxisAlignment: CrossAxisAlignment.start, // 세로 방향 정렬 children: [Text("A"), Text("B")],); Column( m..