show_if

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

show if

ShowIf is an easier way to check a condition before showing the widget
Normally we write:
condition ? Text("Complicated") : Container();
With ShowIf:
ShowIf(condition: true, child: Text("Simple"));
Features #

bool condition
Widget child

Usage #
import 'package:show_if/show_if.dart';
ShowIf(
condition: true,
child: Text("Simple"),
);
Example #
...
import 'package:flutter/material.dart';
import 'package:show_if/show_if.dart';
void main() {
runApp(const Test());
}
class Test extends StatefulWidget {
const Test({Key? key}) : super(key: key);
@override
State
class _TestState extends State
@override
void initState() {
_show = false;
super.initState();
}
@override
Widget build(BuildContext context) {
return ShowIf(
condition: _show,
child: const Text("test"),
childIfFalse: const Text("test if false"),
);
}
}
...

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.

Related Products

More From This Creator