List [index +1] works [index - 1] doesn't (Flutter)How do I check if a list is empty?Finding the index of an item given a list containing it in PythonDifference between append vs. extend list methods in PythonAccessing the index in 'for' loops?How do I remove an element from a list by index in Python?Getting the last element of a list in PythonHow to make a flat list out of list of lists?How do I get the number of elements in a list in Python?How do I concatenate two lists in Python?How to clone or copy a list?

Is there an expression that means doing something right before you will need it rather than doing it in case you might need it?

Short story with a alien planet, government officials must wear exploding medallions

How seriously should I take size and weight limits of hand luggage?

Intersection Puzzle

How much of data wrangling is a data scientist's job?

ssTTsSTtRrriinInnnnNNNIiinngg

Can I run a new neutral wire to repair a broken circuit?

Avoiding direct proof while writing proof by induction

I would say: "You are another teacher", but she is a woman and I am a man

How dangerous is XSS?

Is "remove commented out code" correct English?

What reasons are there for a Capitalist to oppose a 100% inheritance tax?

Forgetting the musical notes while performing in concert

What killed these X2 caps?

CAST throwing error when run in stored procedure but not when run as raw query

What does the expression "A Mann!" means

Can a virus destroy the BIOS of a modern computer?

What does “the session was packed” mean in this context?

How can I deal with my CEO asking me to hire someone with a higher salary than me, a co-founder?

How can I determine if the org that I'm currently connected to is a scratch org?

How to compactly explain secondary and tertiary characters without resorting to stereotypes?

Can my sorcerer use a spellbook only to collect spells and scribe scrolls, not cast?

Why are the 737's rear doors unusable in a water landing?

Size of subfigure fitting its content (tikzpicture)



List [index +1] works [index - 1] doesn't (Flutter)


How do I check if a list is empty?Finding the index of an item given a list containing it in PythonDifference between append vs. extend list methods in PythonAccessing the index in 'for' loops?How do I remove an element from a list by index in Python?Getting the last element of a list in PythonHow to make a flat list out of list of lists?How do I get the number of elements in a list in Python?How do I concatenate two lists in Python?How to clone or copy a list?













0















I have a method to skip to the next list item, which works fine, but the method to display the previous list item doesn't seem to re-render.



When I print to console, the list item index it goes down by 1, but the text widget doesn't update like it does when it increases by 1.



I have shown the 2x methods below and an excerpt from the build. Help! :)



void _skipFlashcard () 
setState(()
int currentIndex = allFlashcards.indexOf(widget.flashcardToShow);
var nextFlashcard = allFlashcards[currentIndex + 1];
widget.flashcardToShow = nextFlashcard;
print(widget.flashcardToShow.flashcardId);
);


void _previousFlashcard ()
int currentIndex = allFlashcards.indexOf(widget.flashcardToShow);
var previousFlashcard = allFlashcards[currentIndex - 1];
widget.flashcardToShow = previousFlashcard;
print(widget.flashcardToShow.flashcardId);


-------------------------
Container(
child: Row(
children: <Widget>[
Text(widget.flashcardToShow.flashcardId.toString()),









share|improve this question


























    0















    I have a method to skip to the next list item, which works fine, but the method to display the previous list item doesn't seem to re-render.



    When I print to console, the list item index it goes down by 1, but the text widget doesn't update like it does when it increases by 1.



    I have shown the 2x methods below and an excerpt from the build. Help! :)



    void _skipFlashcard () 
    setState(()
    int currentIndex = allFlashcards.indexOf(widget.flashcardToShow);
    var nextFlashcard = allFlashcards[currentIndex + 1];
    widget.flashcardToShow = nextFlashcard;
    print(widget.flashcardToShow.flashcardId);
    );


    void _previousFlashcard ()
    int currentIndex = allFlashcards.indexOf(widget.flashcardToShow);
    var previousFlashcard = allFlashcards[currentIndex - 1];
    widget.flashcardToShow = previousFlashcard;
    print(widget.flashcardToShow.flashcardId);


    -------------------------
    Container(
    child: Row(
    children: <Widget>[
    Text(widget.flashcardToShow.flashcardId.toString()),









    share|improve this question
























      0












      0








      0








      I have a method to skip to the next list item, which works fine, but the method to display the previous list item doesn't seem to re-render.



      When I print to console, the list item index it goes down by 1, but the text widget doesn't update like it does when it increases by 1.



      I have shown the 2x methods below and an excerpt from the build. Help! :)



      void _skipFlashcard () 
      setState(()
      int currentIndex = allFlashcards.indexOf(widget.flashcardToShow);
      var nextFlashcard = allFlashcards[currentIndex + 1];
      widget.flashcardToShow = nextFlashcard;
      print(widget.flashcardToShow.flashcardId);
      );


      void _previousFlashcard ()
      int currentIndex = allFlashcards.indexOf(widget.flashcardToShow);
      var previousFlashcard = allFlashcards[currentIndex - 1];
      widget.flashcardToShow = previousFlashcard;
      print(widget.flashcardToShow.flashcardId);


      -------------------------
      Container(
      child: Row(
      children: <Widget>[
      Text(widget.flashcardToShow.flashcardId.toString()),









      share|improve this question














      I have a method to skip to the next list item, which works fine, but the method to display the previous list item doesn't seem to re-render.



      When I print to console, the list item index it goes down by 1, but the text widget doesn't update like it does when it increases by 1.



      I have shown the 2x methods below and an excerpt from the build. Help! :)



      void _skipFlashcard () 
      setState(()
      int currentIndex = allFlashcards.indexOf(widget.flashcardToShow);
      var nextFlashcard = allFlashcards[currentIndex + 1];
      widget.flashcardToShow = nextFlashcard;
      print(widget.flashcardToShow.flashcardId);
      );


      void _previousFlashcard ()
      int currentIndex = allFlashcards.indexOf(widget.flashcardToShow);
      var previousFlashcard = allFlashcards[currentIndex - 1];
      widget.flashcardToShow = previousFlashcard;
      print(widget.flashcardToShow.flashcardId);


      -------------------------
      Container(
      child: Row(
      children: <Widget>[
      Text(widget.flashcardToShow.flashcardId.toString()),






      list flutter setstate






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 21 at 21:28









      ChrisChris

      13




      13






















          1 Answer
          1






          active

          oldest

          votes


















          0














          Wrap your code in setState, that's all that is missed :-)



          void _previousFlashcard () 
          setState()
          int currentIndex = allFlashcards.indexOf(widget.flashcardToShow);
          var previousFlashcard = allFlashcards[currentIndex - 1];
          widget.flashcardToShow = previousFlashcard;
          print(widget.flashcardToShow.flashcardId);







          share|improve this answer























          • Ahhh I should have seen that!!! Thanks :)

            – Chris
            Mar 21 at 22:07











          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55289516%2flist-index-1-works-index-1-doesnt-flutter%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0














          Wrap your code in setState, that's all that is missed :-)



          void _previousFlashcard () 
          setState()
          int currentIndex = allFlashcards.indexOf(widget.flashcardToShow);
          var previousFlashcard = allFlashcards[currentIndex - 1];
          widget.flashcardToShow = previousFlashcard;
          print(widget.flashcardToShow.flashcardId);







          share|improve this answer























          • Ahhh I should have seen that!!! Thanks :)

            – Chris
            Mar 21 at 22:07















          0














          Wrap your code in setState, that's all that is missed :-)



          void _previousFlashcard () 
          setState()
          int currentIndex = allFlashcards.indexOf(widget.flashcardToShow);
          var previousFlashcard = allFlashcards[currentIndex - 1];
          widget.flashcardToShow = previousFlashcard;
          print(widget.flashcardToShow.flashcardId);







          share|improve this answer























          • Ahhh I should have seen that!!! Thanks :)

            – Chris
            Mar 21 at 22:07













          0












          0








          0







          Wrap your code in setState, that's all that is missed :-)



          void _previousFlashcard () 
          setState()
          int currentIndex = allFlashcards.indexOf(widget.flashcardToShow);
          var previousFlashcard = allFlashcards[currentIndex - 1];
          widget.flashcardToShow = previousFlashcard;
          print(widget.flashcardToShow.flashcardId);







          share|improve this answer













          Wrap your code in setState, that's all that is missed :-)



          void _previousFlashcard () 
          setState()
          int currentIndex = allFlashcards.indexOf(widget.flashcardToShow);
          var previousFlashcard = allFlashcards[currentIndex - 1];
          widget.flashcardToShow = previousFlashcard;
          print(widget.flashcardToShow.flashcardId);








          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Mar 21 at 21:34









          Tom AlabasterTom Alabaster

          605412




          605412












          • Ahhh I should have seen that!!! Thanks :)

            – Chris
            Mar 21 at 22:07

















          • Ahhh I should have seen that!!! Thanks :)

            – Chris
            Mar 21 at 22:07
















          Ahhh I should have seen that!!! Thanks :)

          – Chris
          Mar 21 at 22:07





          Ahhh I should have seen that!!! Thanks :)

          – Chris
          Mar 21 at 22:07



















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55289516%2flist-index-1-works-index-1-doesnt-flutter%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

          Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

          Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript