오른쪽으로 이동 두 줄의 텍스트가 넘칩니다
오른쪽으로 이동 두 줄의 텍스트가 넘칩니다나는 한 줄에 두 개의 텍스트를 넣고 싶다. 다음을 수행합니다: Row(crossAxisAlignment: CrossAxisAlignment.end, children: [ Flexible( child: Text(text1, maxLines: 1, overflow: TextOverflow.ellipsis, textAlign: TextAlign.left)), Flexible( child: Text(text2, maxLines: 1, overflow: TextOverflow.ellipsis, textAlign: TextAlign.left)), ]), 여기서 오버플로와 실제로 예상되는 결과를 보여주었다: 빈 공간이 있더라도 행 전체 길이의 절반 이상을 확장할 수 있는 텍..
더보기