Reputation: 114
How to Set Background Image with introduction_screen Package.
Package Link: https://pub.dev/packages/introduction_screen
Thank you for giving me your important time.
Upvotes: 1
Views: 605
Reputation: 172
you can try this
PageViewModel(
title: "Title of first page",
bodyWidget: Container(
decoration: BoxDecoration(
image: DecorationImage(image: AssetImage("your source"))),),
you also can use NetworkImage for get on link instead of AssetImage
Upvotes: 1