Posts

Showing posts from May, 2021

Introduction Screen using introduction_screen package

  In this article we will explore the introduction screen. You might have seen this screen in many applications. Some call this screen a welcome screen, walk through screen, onboarding screen, introduction screen, etc.              Table of content :    Introduction Screen   Demo   Properties   Code implementation   Conclusion Introduction screen : To create an introduction screen in the easiest and fastest way, introduction_screen is the package to go with. You need to add its dependency in your pubspec.yaml file and do pub get. introduction_screen : ^2.1.0 Link of package : https://pub.dev/packages/introduction_screen Demo : Properties :  globalBackgroundColor: This property takes color that we want to show in the background. This color will be the same for all screens. dotDecorator: Using this property we can decorate our dots. It has few properties to decorate dot...