skip to Main Content

Flutter – Button press limit

How to set a limit on button clicks 2 times a day? I have a button IconButton( icon: Icon(Icons.arrow_forward_ios), onPressed: () async { _CreatePost(); _showLoaderDialog(context); }, ), and I want the button to be inactive for 24 hours when there…

VIEW QUESTION
Back To Top
Search