Jayswal Viraj
Jayswal Viraj

Reputation: 114

How to Set Background Image with using introduction_screen package

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

Answers (1)

Zekai Demir
Zekai Demir

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

Related Questions