如何使文本看起来像是出屏幕

发布于 2025-01-23 21:00:04 字数 249 浏览 0 评论 0原文

我正在制作我的应用程序,希望该字体看起来像从屏幕上熄灭或已切断。我找不到与之相关的颤动中的任何东西。如果有人知道这一点,请检查图片,并告诉我是否可能,我该如何制作。

I am making my app in which I want the font to look like its going out of the screen or has been cut off. I am unable to find anything in flutter related to it. If anyone knows about it please check the picture and let me know if its possible then how can I make it.

Picture of text

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

双手揣兜 2025-01-30 21:00:04

尝试以下操作:

return Scaffold(
      body: Transform.scale(
        scaleX: 1.3,
        child: Container(
          color: Colors.blueGrey,
           transform: Matrix4.translationValues(
                7.0, 50.0, 0.0),
          child: Text('Groupp', 
          style: TextStyle(fontSize: 100),
          ),
        ),
      ),
    );

try this:

return Scaffold(
      body: Transform.scale(
        scaleX: 1.3,
        child: Container(
          color: Colors.blueGrey,
           transform: Matrix4.translationValues(
                7.0, 50.0, 0.0),
          child: Text('Groupp', 
          style: TextStyle(fontSize: 100),
          ),
        ),
      ),
    );
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文