conditional_trigger 0.4.0 copy "conditional_trigger: ^0.4.0" to clipboard
conditional_trigger: ^0.4.0 copied to clipboard

Make it easier for you to set the conditions (such as min days or min calls) for specific method or widget.

Conditional Trigger #

This plugin will make it easier for you to set the conditions for specific method.

Usage #

final condition = ConditionalTrigger(
        'SurveyBanner',
        minDays: 3,
        minCalls: 3,
    );
Full parameters
/// Name of this contidion. This is also known as prefix of the SharedPreferences.
final String name;

/// Min days since this method is called
final int minDays;

/// Min calls of this method (increase counter when this method is executed)
/// If you add this line in your main(), it's same as app opening count
final int minCalls;

/// If the current version is satisfied with this than not showing the request
/// this value use plugin `satisfied_version` to compare.
final List<String> noRequestVersions;

/// List of version that allow the app to remind the in-app review.
final List<String> remindedVersions;

/// If true, it'll keep asking for the ConditionalTrigger on each new version
/// (and satisfied with all the above ConditionalTrigger). If false, it only requests
/// for the first time the ConditionalTrigger are satisfied.
final bool keepRemind;

/// Debug
final bool debugLog;

Use this method to check the conditions:

final state = await condition.check();

if (state == ConditionalState.satisfied) {
    // Do something
}

You can get the state if you already ran check() somewhere else:

final state = condition.lastState;

This method will automatically return the conditions.lastState when it is set, so you can call it multiple times:

final stateOnce = await condition.checkOnce();

if (state == ConditionalState.satisfied) {
    // Do something
}
Full ConditionalState
/// The conditions have been satisfied but the `keepRemind` was disabled
ConditionalState.keepRemindDisabled

/// This version is satisfied with `noRequestVersions` => Don't satisfied
ConditionalState.noRequestVersion

/// Don't satisfy with minCalls and minDays
ConditionalState.notSatisfiedWithMinCallsAndDays

/// Don't satisfy with minCalls condition
ConditionalState.notSatisfiedWithMinCalls

/// Don't satisfy with minDays condition
ConditionalState.notSatisfiedWithMinDays

/// Satisfied with all conditions
ConditionalState.satisfied

Or if you want to show a Widget

FutureBuilder(
    future: ConditionalTrigger('SurveyBanner').check(),
    build: (context, snapshot) {
        if (snapshot.data != ConditionalState.satisfied) {
            return SizedBox.shrink();
        }

        return SurveyBanner();
    }
);

Testing #

/// Set mock values
condition.setMockInitialValues(ConditionalMock());

/// Remove mock values
condition.setMockInitialValues();

Contributions #

Contributions to this project are welcome! If you would like to contribute, please feel free to submit pull requests or open issues. However, please note that this project is in early development and may not have well-defined contribution guidelines yet. We appreciate your patience and understanding as we work to build a strong and inclusive community around this package.

2
likes
130
pub points
38%
popularity

Publisher

verified publisherlamnhan.dev

Make it easier for you to set the conditions (such as min days or min calls) for specific method or widget.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, package_info_plus, satisfied_version, shared_preferences, update_helper

More

Packages that depend on conditional_trigger