好的,我使用 Flutter 创建了我的第一个 Web 应用程序,设置了 SSL 并拥有一个具有两种风格的域。
我如何使用 Flutterhttp
进行重定向?https
我可以创建Url 重写服务器端,但我更愿意通过 Flutter 来实现。
有这样的配置可用吗?
好的,我使用 Flutter 创建了我的第一个 Web 应用程序,设置了 SSL 并拥有一个具有两种风格的域。
我如何使用 Flutterhttp
进行重定向?https
我可以创建Url 重写服务器端,但我更愿意通过 Flutter 来实现。
有这样的配置可用吗?
问题出现在 Text(textToDisplay)
我得到了错误Arguments of a constant creation must be constant expressions.
class IconText extends StatelessWidget {
const IconText({super.key, required this.icon, required this.textToDisplay});
final IconData icon;
final String textToDisplay;
@override
Widget build(BuildContext context) {
return const Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Icon(
Icons.male,
size: 80,
color: Colors.grey,
),
SizedBox(height: 15),
Text(textToDisplay)
],
);
}
}
我像这样使用这个小部件
const Expanded(
child: Row(
children: [
NewWidget(
color: widgetColor,
cardChild: IconText(icon: Icons.male, textToDisplay: "Male"),
),
NewWidget(
color: widgetColor,
cardChild: IconText(icon: Icons.male, textToDisplay: "Female"),
)
],
)),
我该如何修复这个错误?