https://api.flutter.dev/flutter/rendering/RenderImage/colorBlendMode.html
colorBlendModeプロパティ
BlendMode? colorBlendMode
Image(画像)と色の組み合わせ方を指定するプロパティ。
デフォルト値はBlendMode.srcIn。ブレンドモードに関しては
色がsource
画像がdestination
です。
colorBlendModeプロパティの型はBlendMode型。列挙型ですね。
列挙型の値を指定することで画像(image)と色の組み合わせ方を指定する、と。
色がsource
画像がdestination
何のこっちゃ、という感じですが、↓のページに詳しく説明されているのでその説明で使用される用語みたいです。
https://api.flutter.dev/flutter/dart-ui/BlendMode-class.html
BlendMode列挙型
import 'package:flutter/material.dart'; void main(){ return runApp(MaterialApp(home:MyApp(),),); } class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return…