本文介绍了在Flutter中剪出文字效果的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何将文本切入一个框形容器中,使内容不可见?
How Can I do a text cut into a box container that leaves the content under it seen?
这正是我的意思:
如您所见,图片下方显示了图片.我该怎么办?
As you can see the immage is seen under the text. How could I do this?
推荐答案
您必须使用CustomPainter
,TextPainter
,BlendMode
和saveLayer
:
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Playground',
home: TestPage(),
);
}
}
class TestPage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Container(
decoration: BoxDecoration(
image: DecorationImage(image: AssetImage('assets/earth.jpg'), fit: BoxFit.cover),
),
child: Center(
child: CustomPaint(
painter: CutOutTextPainter(text: 'YOUR NAME'),
),
),
);
}
}
class CutOutTextPainter extends CustomPainter {
CutOutTextPainter({this.text}) {
_textPainter = TextPainter(
text: TextSpan(
text: text,
style: TextStyle(
fontSize: 40.0,
fontWeight: FontWeight.w600,
),
),
textDirection: TextDirection.ltr,
);
_textPainter.layout();
}
final String text;
TextPainter _textPainter;
@override
void paint(Canvas canvas, Size size) {
// Draw the text in the middle of the canvas
final textOffset = size.center(Offset.zero) - _textPainter.size.center(Offset.zero);
final textRect = textOffset & _textPainter.size;
// The box surrounding the text should be 10 pixels larger, with 4 pixels corner radius
final boxRect = RRect.fromRectAndRadius(textRect.inflate(10.0), Radius.circular(4.0));
final boxPaint = Paint()..color = Colors.white..blendMode=BlendMode.srcOut;
canvas.saveLayer(boxRect.outerRect, Paint());
_textPainter.paint(canvas, textOffset);
canvas.drawRRect(boxRect, boxPaint);
canvas.restore();
}
@override
bool shouldRepaint(CutOutTextPainter oldDelegate) {
return text != oldDelegate.text;
}
}
这篇关于在Flutter中剪出文字效果的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!