whats_new_feature 0.0.1-dev.2
whats_new_feature: ^0.0.1-dev.2 copied to clipboard
Show apple like whats new feature in the latest update
whats_new_feature #
Show apple like whats new feature on new update of your app
Screenshot #

Installation #
Add whats_new_feature: ^0.0.1 to your pubspec.yaml dependencies. And import it:
import 'package:whats_new_feature/whats_new_feature.dart';
How to use #
Simply call showWhatsNew() method from WhatsNewFeature(), and pass the required params:
@override
void initState() {
super.initState();
_showWhatsNew();
}
Future<void> _showWhatsNew() async {
await const WhatsNewFeature().showWhatsNew(
context,
showWhatsNew: true,
showWhatsNewOnFirstInstall: true,
features: [
WhatsNewFeatureTile(
icon: Icons.browse_gallery_rounded,
titleText: 'Story Size Quote',
subtitleText:
'Now you can create portrait or story size quote in the app and you can easily share it',
),
WhatsNewFeatureTile(
icon: Icons.pages,
titleText: 'Image Cropper',
subtitleText:
'Now you can create portrait or story size quote in the app and you can easily share it',
),
WhatsNewFeatureTile(
icon: Icons.image,
titleText: 'Persist last style',
subtitleText:
'Now quote writer app will persist the last edited style with image',
),
],
);
}