flutter get key from map
String key = values.keys.elementAt(index);
flutter get key from map
String key = values.keys.elementAt(index);
flutter map key/value
void main() {
final testMap = {"a": 1, "b": 2, "c": 3, "d": 4, "e": 5};
for (final mapEntry in testMap.entries) {
final key = mapEntry.key;
final value = mapEntry.value;
print('Key: $key, Value: $value'); // Key: a, Value: 1 ...
}
}
flutter create new map
Map<String, int> map1 = {'zero': 0, 'one': 1, 'two': 2};
Map map2 = {'zero': 0, 'I': 'one', 10: 'X'};
var map3 = {'zero': 0, 'I': 'one', 10: 'X'};
get value from map with key flutter
String value = myMap["mykey"];
flutter List<Map<String, Object>> example
//flutter List<Map<String, Object>> example
// this is a simple example to show how you can use a List
// with a number of widgets, ideally you should split your classes into
// separate files in order to trim down you Widget Tree.
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget{
@override
Widget build(BuildContext context){
return MaterialApp(
title: 'Hello Phrases',
home: _MyHomePage(),
);
}
}
class _MyHomePage extends StatefulWidget{
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<_MyHomePage> {
int phraseCount = 0;
final List<Map<String, Object>> myPhraseList = [
{'phrase': 'Phrase 1 some interesting phrase'},
{'phrase': 'Phrase 2 and yet another interesting phrase'}
];
void nextPhrase(){
setState((){
phraseCount += 1;
});
}
void resetPhrase(){
setState((){
phraseCount = 0;
});
}
@override
Widget build(BuildContext context){
return Scaffold(
appBar: AppBar(
title: Text('The Quote App'),
),
body: Container(
padding: EdgeInsets.all(20.0),
child: phraseCount < myPhraseList.length ? PhraseLogic(nextPhrase: nextPhrase, myPhraseList: myPhraseList, phraseCount: phraseCount) : ResetPhrase(resetPhrase: resetPhrase),
),
);
}
}
class PhraseLogic extends StatelessWidget {
final List<Map<String, Object>> myPhraseList;
final int phraseCount;
final Function nextPhrase;
PhraseLogic({this.nextPhrase, this.phraseCount, this.myPhraseList});
@override
Widget build(BuildContext context) {
return Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.stretch,
children: [
Text(myPhraseList[phraseCount]['phrase']),
SizedBox(height: 20.0),
RaisedButton(
child: Text('Next Phrase'),
onPressed: nextPhrase,
),
],
);
}
}
class ResetPhrase extends StatelessWidget {
final Function resetPhrase;
ResetPhrase({this.resetPhrase});
@override
Widget build(BuildContext context) {
return Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.stretch,
children: [
Text('All done!!!'),
SizedBox(height: 20.0),
RaisedButton(
child: Text('Reset Phrase'),
onPressed: resetPhrase,
),
],
);
}
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us