App Intro A light weight package that helps developers easily provide few introduction screens and describe about their app Get the library | Example Demo Usage Import the package to your dart file import 'package:app_intro/app_intro.dart' ; Get ready with the stuff Collect titles, description and relevant images for slides. Create a list of slides and pass it as a parameter *Note: Image path must be local List < Slide > slides = [ new Slide ( 'Title-1' , 'Description-1' , 'image-1-path' ) , new Slide ( 'Title-2' , 'Description-2' , 'image-2-path' ) , new Slide ( 'Title-3' , 'Description-3' , 'image-3-path' ) , new Slide ( 'Title-4' , 'Description-4' , 'image-4-path' ) , . . . ] ; The user is provided with two buttons Terms and Conditions General Button(You must provide what text should be shown there) Create a t...
Comments
Post a Comment