Last active
July 9, 2019 20:36
-
-
Save VB10/450e948cccf302b3aaafc956932d45c0 to your computer and use it in GitHub Desktop.
Onboarding View
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
| class _OnBoardingViewState extends State<OnBoardingView> { | |
| PageController _pageController; | |
| double _currentPageIndex = 0; | |
| @override | |
| void initState() { | |
| super.initState(); | |
| _pageController = new PageController(); | |
| } | |
| _navigateLoginPage() { | |
| Navigator.of(context) | |
| .pushNamedAndRemoveUntil("/login", (Route<dynamic> route) => false); | |
| } | |
| void _onPageChangeEvent(double number) { | |
| if (number == UIHelper.ONBOARD_PAGE_COUNT) { | |
| //end page | |
| _navigateLoginPage(); | |
| return; | |
| } else { | |
| setState(() { | |
| _currentPageIndex = number; | |
| }); | |
| } | |
| } | |
| @override | |
| Widget build(BuildContext context) { | |
| return Scaffold( | |
| appBar: _appBar, | |
| body: SafeArea( | |
| child: Column( | |
| children: <Widget>[ | |
| Expanded(child: _pageView), | |
| _indicatorPageView, | |
| _nextButtonWrap | |
| ], | |
| ), | |
| ), | |
| ); | |
| } | |
| Widget get _appBar => AppBar( | |
| backgroundColor: Theme.of(context).scaffoldBackgroundColor, | |
| elevation: UIHelper.Space0, | |
| iconTheme: IconThemeData(color: Colors.black), | |
| actions: <Widget>[ | |
| ActionChip( | |
| label: Text( | |
| "skip", | |
| style: TextStyle(letterSpacing: 2), | |
| ), | |
| elevation: UIHelper.Space10, | |
| onPressed: _navigateLoginPage, | |
| ), | |
| SizedBox( | |
| width: UIHelper.Space15, | |
| ), | |
| ], | |
| ); | |
| Widget get _indicatorPageView => SizedBox( | |
| height: 50, width: UIHelper.dynamicWidth(300), child: _pageIndicator); | |
| Widget get _nextButtonWrap => SizedBox( | |
| width: UIHelper.dynamicHeight(UIHelper.Space200), child: _nextButton); | |
| Widget get _pageView => PageView( | |
| onPageChanged: (page) { | |
| _onPageChangeEvent(page.toDouble()); | |
| }, | |
| controller: _pageController, | |
| children: <Widget>[_onBoardFirst, _onBoardSecond, _onBoardSecond], | |
| ); | |
| Widget get _onBoardFirst => OnBoardWidget( | |
| title: "Exercises", | |
| subTitle: "To Your Personalized Profile", | |
| imagePath: "onboard1", | |
| ); | |
| Widget get _onBoardSecond => OnBoardWidget( | |
| title: "Keep Eye On Health Tracking", | |
| subTitle: "Log & reminder your activities", | |
| imagePath: "onboard2", | |
| ); | |
| Widget get _onBoardThird => OnBoardWidget( | |
| title: "Check Your Progress", | |
| subTitle: "An tracking calendar", | |
| imagePath: "onboard3", | |
| ); | |
| Widget get _pageIndicator => ListView.builder( | |
| itemCount: UIHelper.ONBOARD_PAGE_COUNT, | |
| scrollDirection: Axis.horizontal, | |
| itemBuilder: (context, index) { | |
| return Padding( | |
| padding: EdgeInsets.all(8.0), | |
| child: CircleAvatar( | |
| radius: 5, | |
| backgroundColor: | |
| index == _currentPageIndex ? Colors.yellow : Colors.grey, | |
| ), | |
| ); | |
| }, | |
| ); | |
| void _nextButtonOnPress() { | |
| _onPageChangeEvent(_currentPageIndex); | |
| _pageController.nextPage( | |
| duration: Duration(milliseconds: UIHelper.ONBOARD_NEXT_DURATION), | |
| curve: Curves.easeIn); | |
| } | |
| Widget get _nextButton => RoundedButtonWidget( | |
| onPress: _nextButtonOnPress, | |
| child: Text( | |
| "NEXT", | |
| style: onBoardingNextButtonStyle, | |
| ), | |
| ); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment