This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
String playHideAndSeekTheLongVersion() { | |
var counting = 0; | |
for (var i = 1; i <= 1000000000; i++) { | |
counting = i; | |
} | |
return '$counting! Ready or not, here I come!'; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class OrderPage extends StatefulWidget { | |
@override | |
_OrderPageState createState() => _OrderPageState(); | |
} | |
class _OrderPageState extends State<OrderPage> { | |
bool isShowing = true; | |
@override | |
Widget build(BuildContext context) { | |
return Column(children: [ |