簡體   English   中英

如何在 flutter 中的矩形內繪制文本

[英]How to draw a text inside rectangle in flutter

嗨,我想使用 canvas 繪制一個帶有文本的填充矩形。

這是我的代碼:

Rect rect = Rect.fromLTWH(x,y,size,size,);
Paint paint = Paint()..color = Colors.blue;
canvas.drawRRect(RRect.fromRectAndRadius(rect, Radius.circular(100.0)),paint,);

我不知道如何將文本放在矩形內。 請幫忙

使用TextPainter class。 你可以自己玩弄偏移量

    TextPainter painter;
    painter = TextPainter(
      textAlign: TextAlign.center,
      textDirection: TextDirection.ltr,
    );
    painter.text = TextSpan(
      text: 'Sample Text',
      style: TextStyle(
        color: Colors.black,
        fontSize: 40.0,
      ),
    );
    Offset position = Offset(
      x+2.0, 
      y+2.0,
    );
    painter.paint(canvas, position);

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM