Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

flutter_airbnb 만들 때 TextOverflow.ellipsis 관련 문의 #2

Open
kimbushik opened this issue Aug 23, 2021 · 2 comments
Open

flutter_airbnb 만들 때 TextOverflow.ellipsis 관련 문의 #2

kimbushik opened this issue Aug 23, 2021 · 2 comments

Comments

@kimbushik
Copy link

kimbushik commented Aug 23, 2021

_buildPopularItemComment() 함수 안에서 Text() 위젯의 속성 중
overflow: TextOverflow.ellipsis 사용 시 화면의 크기에 따라 한글 텍스트가 깨지는데요
혹시 해결 방법이 있을까요?

  Widget _buildPopularItemComment() {
    return Column(
      children: [
        Text(
            "깔끔하고 다 갖춰져있어서 좋았어요:) 위치도 완전 좋아용 다들 여기 살고싶다구ㅋㅋㅋㅋㅋ "
                        "화장실도 3개예요!!! 5명이서 씻는것도 전혀 불편함없이 좋았어요^^ 이불도 포근하고 좋습니당ㅎㅎㅎ",
            style: body1(),
            maxLines: 3, // 2. 글자 라인을 제한할 수 있다.
            overflow: TextOverflow.ellipsis // 글자가 3 라인을 벗어나면 ... 처리된다.
            ),
        SizedBox(height: gap_s),
      ],
    );
  }

위의 소스에서 "이불도 포" 까지 출력이 되고 "..." 이 나와야하는데
image
처럼 출력이 됩니다.

이걸 어떻게 해결해야할까요?

@flutter-coder
Copy link
Owner

네이버 까페 메타코딩에서 질문주시면 바로 대답해드릴 수 있어요. 이제 봤네요. 혹시 에뮬레이터 어떤거 사용하시나요?

@flutter-coder
Copy link
Owner

불편함 없이 좋았어요^^

완벽한 버그네요. 이 부분은 플러터 측에서 해결해주지 않는 이상!!

불편함 다음에 한칸 띄어쓰기를 해주시면 해결됩니다.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants