whats_new_feature 0.0.1-dev.2 copy "whats_new_feature: ^0.0.1-dev.2" to clipboard
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

style: very good analysis License: MIT

Screenshot #

simple

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',
      ),
    ],
  );
}
15
likes
140
points
35
downloads

Publisher

unverified uploader

Weekly Downloads

Show apple like whats new feature in the latest update

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, package_info_plus, shared_preferences

More

Packages that depend on whats_new_feature