简体   繁体   中英

Notepad - RangeError (index): Invalid value: Valid value range is empty: 0 - flutter

I want to save text and date to txt file and load it but I am getting "RangeError (index): Invalid value: Valid value range is empty: 0"

void _loadNotes() async {
    var directory = await getApplicationDocumentsDirectory();
    var file = File("${directory.path}/notable.txt");
    if (!await file.exists()) {
      file.createSync();
      file.writeAsStringSync("Hello, World!#This is your first note.\n");
    }
    var contents = await file.readAsString();
    var contentsList = contents.split("\n");
    for (var i = 0; i < contentsList.length; i++) {
      var noteLine = contentsList[i].split("#");
      _notes.add(noteLine[0]);
      _noteAddedDates.add(noteLine[1]);
    }
  }
  void _saveNotes() async {
    var directory = await getApplicationDocumentsDirectory();
    var file = File("${directory.path}/notable.txt");
    var contents = "";
    for (var i = 0; i < _notes.length; i++) {
      contents += _notes[i] + "#" + _noteAddedDates[i] + "\n";
    }
    await file.writeAsString(contents);
  }
    void _loadNotes() async {
        var directory = await getApplicationDocumentsDirectory();
        var file = File("${directory.path}/notable.txt");
        if (!await file.exists()) {
          file.createSync();
          file.writeAsStringSync("Hello, World!#This is your first note.\n");
        }
        var contents = await file.readAsString();
        var contentsList = contents.split("\n");
    Future.delayed(Duration(milliseconds: 1000), () {

//add this delay 
          for (var i = 0; i < contentsList.length; i++) {
          var noteLine = contentsList[i].split("#");
          _notes.add(noteLine[0]);
          _noteAddedDates.add(noteLine[1]);
        }                                            
            });
     
      }

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM