v_widgets 0.0.1+1 v_widgets: ^0.0.1+1 copied to clipboard
Widget collection inspired by Vue.js conditional rendering
Features #
Widget collection inspired by Vue.js conditional rendering.
Currently only supports Vif.
Usage #
To use Vif, simply pass in closures for test (returning bool), ifTrue (returning Widget) and optionally ifFalse(Widget, defaults to SizedBox).
Vif(
test: () => _orienatation == Orientation.landscape,
ifTrue: () => _buildLandscape( context ),
ifFalse: () => _buildPortrait( context ),
)
Vif(
test: () => featureEnabled,
ifTrue: () => _buildFeature( context ),
)