Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
181 views
in Technique[技术] by (71.8m points)

Flutter int counter... adding a range

I have an App made with flutter that when a button is pressed it increments a counter by 1. I would like to make the counter go to 10 and then simply start at 0 again. Is this possible?

this is code for the onPressed:

 RaisedButton(
   splashColor: Colors.blueAccent[700],
   child: Text(
          '+ Hit',
     style: TextStyle(color: Colors.black),
    ),
    color: Colors.lightBlue[100],
    onPressed: _incrementCounter,
  ),

and the _incrementCounter section of code: (I am storing the value in shared prefs)

    _incrementCounter() async {
    SharedPreferences prefs = await SharedPreferences.getInstance();
    setState(() {
    counter = (prefs.getInt('counter') ?? 0) + 1;
    prefs.setInt('counter', counter);
    });
   } 

How do i add the condition to start again when reaching 10??

Thanks to all

question from:https://stackoverflow.com/questions/65599399/flutter-int-counter-adding-a-range

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Add a condition on the onTap function of the button, where when counter > 10 then counter = 0


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...