- сначала определите свой массив, как вы упомянули
- определите значение по умолчанию
- сделайте зацикливание при нажатии
для подробного кода можете обратиться к этому коду
class _MyHomePageState extends State<MyHomePage> {
List data = ["One", "Two", "Three"];
int i = 0;
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Text(
data[i],
),
],
),
),
floatingActionButton: FloatingActionButton(
onPressed: () {
setState(() {
i = (i + 1) % data.length;
});
},
tooltip: 'Increment',
child: Icon(Icons.add),
),
);
}
}