Flutter-省略記号の挿入やフェードなど、オーバーフロー時にテキストを折り返す


121

中央のテキストが最大サイズである行を作成しようとしています。テキストの内容が大きすぎる場合は、サイズに収まります。

TextOverflow.ellipsisプロパティを挿入してテキストを短くし、トリプルポイントを挿入しました...が、機能しません。

main.dart

import 'package:flutter/material.dart';

void main() {
runApp(new MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return new MaterialApp(
      home: new HomePage(),
    );
  }
}

class HomePage extends StatelessWidget {
  @override
  Widget build(BuildContext context) => new Scaffold(
    appBar: new AppBar(
      backgroundColor: new Color(0xFF26C6DA),
    ),
    body: new ListView  (
      children: <Widget>[
        new Card(
          child: new Container(
            padding: new EdgeInsets.symmetric(horizontal: 16.0, vertical: 18.0),
            child: new Row(
              children: <Widget>[
                new Container(
                  padding: new EdgeInsets.only(right: 24.0),
                  child: new CircleAvatar(
                    backgroundColor: new Color(0xFFF5F5F5),
                    radius: 16.0,
                  )
                ),
                new Container(
                  padding: new EdgeInsets.only(right: 13.0),
                  child: new Text(
                    'Text lar...',
                    overflow: TextOverflow.ellipsis,
                    style: new TextStyle(
                      fontSize: 13.0,
                      fontFamily: 'Roboto',
                      color: new Color(0xFF212121),
                      fontWeight: FontWeight.bold,
                    ),
                  ),
                ),
                new Container(
                  child: new Column(
                    crossAxisAlignment: CrossAxisAlignment.end,
                    children: <Widget>[
                      new Row(
                        children: <Widget>[
                          new Text(
                            'Bill  ',
                            style: new TextStyle(
                              fontSize: 12.0,
                              fontFamily: 'Roboto',
                              color: new Color(0xFF9E9E9E)
                            ),
                          ),
                          new Text(
                            '\$ -999.999.999,95',
                            style: new TextStyle(
                              fontSize: 14.0,
                              fontFamily: 'Roboto',
                              color: new Color(0xFF212121)
                            ),
                          ),
                        ],
                      ),
                      new Row(
                        children: <Widget>[
                          new Text(
                            'Limit  ',
                            style: new TextStyle(
                              fontSize: 12.0,
                              fontFamily: 'Roboto',
                              color: new Color(0xFF9E9E9E)
                            ),
                          ),
                          new Text(
                            'R\$ 900.000.000,95',
                            style: new TextStyle(
                              fontSize: 14.0,
                              fontFamily: 'Roboto',
                              color: new Color(0xFF9E9E9E)
                            ),
                          ),
                        ],
                      ),
                    ]
                  )
                )
              ],
            ),
          )
        ),
      ]
    )
  );
}

結果:

ここに画像の説明を入力してください

期待される:

ここに画像の説明を入力してください

回答:


246

あなたは、あなたをラップする必要がありContainerFlexible、あなたのようにするRowために、それは大丈夫だことを知っているがContainer、その固有の幅よりも狭くします。Expandedも動作します。

スクリーンショット

Flexible(
  child: new Container(
    padding: new EdgeInsets.only(right: 13.0),
    child: new Text(
      'Text largeeeeeeeeeeeeeeeeeeeeeee',
      overflow: TextOverflow.ellipsis,
      style: new TextStyle(
        fontSize: 13.0,
        fontFamily: 'Roboto',
        color: new Color(0xFF212121),
        fontWeight: FontWeight.bold,
      ),
    ),
  ),
),

1
Columnにも同様の問題があります。この方法ではうまくいきません。stackoverflow.com/questions/52206221/...
マイケルTedla

これをテキストフィールドに実装する方法はありますか?
mangkool

テキストwrap_contentにもFlexFit.looseでfitプロパティを指定させる場合は、
martinseal1987

108

省略記号の使用

Text(
  "This is a long text",
  overflow: TextOverflow.ellipsis,
),

ここに画像の説明を入力してください


フェードを使用する

Text(
  "This is a long text",
  overflow: TextOverflow.fade,
  maxLines: 1,
  softWrap: false,
),

ここに画像の説明を入力してください


クリップを使う

Text(
  "This is a long text",
  overflow: TextOverflow.clip,
  maxLines: 1,
  softWrap: false,
),

ここに画像の説明を入力してください


注意:

Text内部で使用している場合はRow、次のようにText内部に配置できますExpanded

Expanded(
  child: AboveText(),
)

テキストがオーバーフローしたときに追加して、次のようなフラットボタンを追加できます... more link
mr.hir

@ mr.hir聞き取れませんでした。
CopsOnRoad

テキストと別のウィジェット(アイコンなど)が行の中央にある場合、これは機能しません。
Lukasz Ciastko

softWrap: false本当に必要なものです、ありがとう!
コールドエンブレム

たとえば、テキストが溢れている新しいページを追加したい場合はどうでしょうか。
Nithin Sai

22

このコードを使用して、省略記号でテキストを表示できます

Text(
    "Introduction to Very very very long text",
    maxLines: 1,
    overflow: TextOverflow.ellipsis,
    softWrap: false,
    style: TextStyle(color: Colors.black, fontWeight: FontWeight.bold),
),

11
また、質問への回答方法を説明するために、このコードの説明を含めてください。
jkdev 2018年

14

あなたはそのようにすることができます

Expanded(
   child: Text(
   'Text',
   overflow: TextOverflow.ellipsis,
   maxLines: 1
   )
)

8

まず、あなたのラップRowまたはColumnFlexibleまたはExpandedウィジェットその後、

Text(
    'your long text here',
    overflow: TextOverflow.fade,
    maxLines: 1,
    softWrap: false,
    style: Theme.of(context).textTheme.body1,
)

はい、これは正しい方法です。最初に列をExpanded内にラップすることは本当にうまくいきました!列の子の内部でテキストを使用します。
ArifMustafa


4

たとえばチャットメッセージが本当に長い行になる可能性がある場合に、行内のテキストウィジェットのオーバーフローを修正する1つの方法。コンテナとmaxWidthを含むBoxConstraintを作成できます。

            Container(
              constraints: BoxConstraints(maxWidth: 200),
                child: Text(
                  (chatName == null) ? " ": chatName,
                  style: TextStyle(
                      fontWeight: FontWeight.w400,
                      color: Colors.black87,
                      fontSize: 17.0),
                )
            ),

これは私のおかげでうまく
いき

3
SizedBox(
    width: 200.0,
    child: Text('PRODUCERS CAVITY FIGHTER 50X140g',
                overflow: TextOverflow.ellipsis,
                style: Theme.of(context).textTheme.body2))

ウィジェットが機能するために特定の幅を取ることができるウィジェット内にラップするか、ウィジェットが親コンテナーの幅を想定します。


0

親コンテナには適切なサイズのmaxWidthを指定する必要があると思います。テキストボックスは、上で指定したスペースをすべて埋めるように見えます。


0

あなたの状況にもよりますが、これが以下の最良のアプローチだと思います。

final maxWidth = MediaQuery.of(context).size.width * 0.4;
Container(
        textAlign: TextAlign.center),
        child: Text('This is long text',
        constraints: BoxConstraints(maxWidth: maxWidth),
),

0

テキストを列の子として配置するだけの場合、これがテキストを自動的に折り返す最も簡単な方法です。これ以上複雑なことは何もないと仮定します。それらの場合、私はあなたがあなたが適切だと思うサイズのコンテナを作成し、別の列を中に入れ、次にあなたのテキストを入れると思います。これはうまく動作するようです。コンテナは中身のサイズに縮小したいと考えていますが、これは当然、ラッピングと競合するようで、より多くの労力が必要です。

Column(
  mainAxisSize: MainAxisSize.min,
  children: <Widget>[
    Text('This long text will wrap very nicely if there isn't room beyond the column\'s total width and if you have enough vertical space available to wrap into.',
      style: TextStyle(fontSize: 16, color: primaryColor),
      textAlign: TextAlign.center,),
  ],
),

0

多くの答えがありますが、もう少し観察します。

1.クリップ

オーバーフローしたテキストをクリップして、コンテナを修正します。

SizedBox(
          width: 120.0,
          child: Text(
            "Enter Long Text",
            maxLines: 1,
            overflow: TextOverflow.clip,
            softWrap: false,
            style: TextStyle(color: Colors.black, fontWeight: FontWeight.bold, fontSize: 20.0),
          ),
        ),

出力:

ここに画像の説明を入力してください

2.フェード

オーバーフローしたテキストを透明にフェードします。

SizedBox(
          width: 120.0,
          child: Text(
            "Enter Long Text",
            maxLines: 1,
            overflow: TextOverflow.fade,
            softWrap: false,
            style: TextStyle(color: Colors.black, fontWeight: FontWeight.bold, fontSize: 20.0),
          ),
        ), 

出力:

ここに画像の説明を入力してください

3.省略

省略記号を使用して、テキストがオーバーフローしたことを示します。

SizedBox(
          width: 120.0,
          child: Text(
            "Enter Long Text",
            maxLines: 1,
            overflow: TextOverflow.ellipsis,
            softWrap: false,
            style: TextStyle(color: Colors.black, fontWeight: FontWeight.bold, fontSize: 20.0),
          ),
        ),

出力:

ここに画像の説明を入力してください

4.目に見える

コンテナの外でオーバーフローテキストをレンダリングします。

SizedBox(
          width: 120.0,
          child: Text(
            "Enter Long Text",
            maxLines: 1,
            overflow: TextOverflow.visible,
            softWrap: false,
            style: TextStyle(color: Colors.black, fontWeight: FontWeight.bold, fontSize: 20.0),
          ),
        ),

出力:

ここに画像の説明を入力してください


-3

試してください:

 Expanded(
  child: Container(
      child: Text('OVER FLOW TEST TEXTTTT',
          overflow: TextOverflow.fade)),
),

これが表示されOVER FLOWます。オーバーフローがある場合は処理されます。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.