Created
June 1, 2020 22:26
-
-
Save mukireus/d8461751ffeecb0e9960f391f0250d0b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
List<OnboardingModel> pages = [ | |
OnboardingModel( | |
title: AppStrings.onboardingTitle1, | |
description: AppStrings.onboardingDescription1, | |
icon: AppLogo(color: AppColors.colorLightSecondary, height: 50), | |
), | |
OnboardingModel( | |
title: AppStrings.onboardingTitle2, | |
description: AppStrings.onboardingDescription2, | |
icon: Icon(AppIcons.location, size: 50, color: AppColors.colorLightSecondary), | |
), | |
OnboardingModel( | |
title: AppStrings.onboardingTitle3, | |
description: AppStrings.onboardingDescription3, | |
icon: Icon(AppIcons.notification, size: 50, color: AppColors.colorLightSecondary), | |
), | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment