Skip to content

Instantly share code, notes, and snippets.

View NinoBass's full-sized avatar
🏠
Working from home

Oluwaseun Odunlade NinoBass

🏠
Working from home
View GitHub Profile
@NinoBass
NinoBass / inteview
Created July 28, 2022 13:02
Flutter inteview You’re making a shopping app called RubberBaby, which sells dolls. Unfortunately, you’ve run into a problem on the order page. If a customer makes one order for blue dolls and another order for red dolls but then tries to delete the blue doll order, the red doll order is wrong.
class OrderPage extends StatefulWidget {
@override
_OrderPageState createState() => _OrderPageState();
}
class _OrderPageState extends State<OrderPage> {
bool isShowing = true;
@override
Widget build(BuildContext context) {
return Column(children: [