Commit 37a4ca93 authored by Tuan Anh Nguyen's avatar Tuan Anh Nguyen
Browse files

fix: revert text cropping

parent 389191f0
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -62,10 +62,9 @@ class PostcardTile extends StatelessWidget {
  Widget _senderDetail(MediaService mediaService) {
    return Row(
      children: [
        Text(
          postcard.sender.userName,
          overflow: TextOverflow.fade,
        ),
        Text(postcard.sender.userName.length > 14
            ? '${postcard.sender.userName.substring(0, 14)}..'
            : postcard.sender.userName),
        Spacer(),
        FutureBuilderHandler(
          future: mediaService.getFlagBitcode(postcard.originLocation),