如何使用 introduction_screen 包设置背景图片
How to Set Background Image with using introduction_screen package
如何使用 introduction_screen 包设置背景图片。
包裹Link:https://pub.dev/packages/introduction_screen
感谢您给我宝贵的时间。
你可以试试这个
PageViewModel(
title: "Title of first page",
bodyWidget: Container(
decoration: BoxDecoration(
image: DecorationImage(image: AssetImage("your source"))),),
您也可以使用 NetworkImage 代替 AssetImage
link
如何使用 introduction_screen 包设置背景图片。
包裹Link:https://pub.dev/packages/introduction_screen
感谢您给我宝贵的时间。
你可以试试这个
PageViewModel(
title: "Title of first page",
bodyWidget: Container(
decoration: BoxDecoration(
image: DecorationImage(image: AssetImage("your source"))),),
您也可以使用 NetworkImage 代替 AssetImage
link