How could I change ColorTween colors in Flutter
问题 I want to change the colors in the ColorTween when I call setState() in Flutter Here is my animated image import 'dart:async'; import 'package:flutter/material.dart'; import 'package:flutter/widgets.dart'; class FingerprintImageWidget extends StatefulWidget { FingerprintImageWidget( {Key key, this.width, this.height, this.beginColor, this.endColor}) : super(key: key); final double width; final double height; Color beginColor; Color endColor; @override FingerprintImageWidgetState createState()