- Fixed overflowing issue with the bubbles. Thanks @Jayson1999
- Updated app example
- Updated CI
- Updated app example. Thanks @zognotadog
- Added new
pageBackground
property to thePageViewModel
, which sets a widget as a background of the whole page (pageColor
has priority over this). Thanks @ride4sun - Arguments
title
,body
andmainImage
are no longer required and can be omitted.
Major Updates
- Migrated to null safety.
- Breaking Change: Now only a single import is required:
import 'package:intro_views_flutter/intro_views_flutter.dart';
Other old imports from this package are now invalid and must be removed/replaced with import above in order to solve path errors.
- Critical Bug Fix: Replacing deprecated
resizeToAvoidBottomPadding
.
- Minor bug fixes and enhancements.
- Minor bug fixes.
Bug Fixes
- Add SafeArea to align title below display cutouts.
- Prevent multiple rapid clicks to overflow index bounds.
Feature Enhancement
- Allow title TextStyle and body TextStyle to be changed individually.
- fix: title size for iPhone 5s
- Fix problem padding top in title of pageViews.
- Background property added that can be used to add full screen image to IntroViews.
- Added Next Button to move to the next screen. Overriding doneButtonPersist.
- Added Back Button. Overrides showSkipButton starting from the second page.
Feature Enhancement
- Exposed the way to change the distance a user needs to drag for a full transition to occur using
fullTransition
and its default value is set to300.0
. - Added ability to insert a custom widget in the page bubble.
- Changed
title
,body
,mainImage
PageViewModel types to be more dynamic. - Removed all
new
keywords.
Feature Enhancement
- Exposed columnMainAxisAlignment to change mainAxisAlignment.
- Updated Readme.
- Adjust the Scaffold in fullscreen.
- General Update.
- Added Widget testing.
- Updated Readme.
- Added feature to override Text widget styles for skip and done button.
- Added doneButtonPersist to show done button throughout the session.
- Updated Readme.
- Fixed overflow for small screen apps.
Major Updates
- Made intro views responsive.
- Refracting page view model.
- Body title, expects Text Widget.
- Main image, expects Image Widget.
- Added TextStyle property to page view model that can be used to set styles for both title and body.
- Added TextStyle property for page indicator buttons which overrides previous button properties.
- Updated Readme and example.
- Made intro views responsive.
- Added onTapSkipButton voidCallback.
- Updated Readme.
- Updated Readme.
- Fixed bugs.
- Fixed formatting issues.
- Updated Readme.
- Fixed static analyzers issues.
- Fixed formatting issues.
- Initial Release.