- Add null-safety
- Renamed package to conditioned
- Fix typo in README.md
- Completely overhauled the API so it's now 1
Widget
namedConditioned
. - No more passing of
Widget
s. Instead usesWidget
builders.
- Renamed a lot.
- Updated README.md.
- Updated the example.
- Add some doc to the code.
- The Widget for simple true/false checks has been renamed from
Condition
toSimpleCondition
. - The Widget used for more complex use-cases has been renamed from
MatchCondition
toCondition
. - A new Widget (
SwitchCondition
) has been added for use in cases where you would normally use aswitch
. - The
README.md
has been changed to reflect the changes and additions.
- Fix a typo in
pubspec.yaml
(homepage url).
- Add the
Condition
Widget for simple true/false condition checks. - Add the
MatchCondition
Widget for more complex condition checks.