gpt4 book ai didi

flutter - 如果页面已更改,Flutter应用程序复选框将停止切换状态

转载 作者:行者123 更新时间:2023-12-03 04:45:01 25 4
gpt4 key购买 nike

我遇到的类参数问题通常在页面呈现时尚未完全初始化。更具体地说,这是通过复选框进行的。通常,由于下划线参数列表值为空,我似乎无法在打印时切换它们的状态。至少那是我在调试时看到的。这是一个简单的应用程序代码,可重现错误的行为(按“上一个”或“下一个”后,复选框停止对水龙头使用react):

import 'package:flutter/material.dart';

class Value {
String _id;
String title;

Value(id) {
_id = id;
}
}

class Story {
Map<Value, bool> _valuesSelection = {};
State _state;

Story(state) {
_state = state;
}

void addValue(Value value, {bool enabled = false}) {
_valuesSelection.putIfAbsent(value, () => enabled);
}

bool getValueState(Value value) {
return _valuesSelection[value];
}

void toggleValue(Value value) {
_valuesSelection[value] = !_valuesSelection[value];
}

void enableValue(Value value) {
_valuesSelection[value] = true;
}

void disableValue(Value value) {
_valuesSelection[value] = false;
}

Value getValueById(String id) {
return _valuesSelection.keys.where((element) => element._id == id).toList()[0];
}

List<Value> getAllValues() {
return _valuesSelection.keys.toList();
}

Widget buttons(BuildContext context) {

Widget previousNextButtons = Row(children: <Widget>[
Expanded(child: Container(
padding: EdgeInsets.all(20),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: <Widget>[
Column(
children: <Widget>[
FlatButton(
onPressed: () {
var previousStoryPageWidget = StoryStartPage(1);
Future( () {
Navigator.of(context).push(
MaterialPageRoute(builder: (BuildContext context) => previousStoryPageWidget )
);
});
},
child: Container(
height: 50,
width: 150,
decoration: BoxDecoration(
color: Colors.red,
borderRadius: BorderRadius.all(Radius.circular(35.0))),
child: Column(
children: <Widget> [
Expanded(
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Text("Previous", style: TextStyle(color: Colors.white, fontSize: 16), textAlign: TextAlign.center),
]
)
)
],
)
)
)
],
),
Column(
children: <Widget>[
FlatButton(
onPressed: () {// if OK button is active
var nextStoryPageWidget = StoryStartPage(1);
Future( () {
Navigator.of(context).push(
MaterialPageRoute(builder: (BuildContext context) => nextStoryPageWidget )
);
});
},
child: Container(
height: 50,
width: 150,
decoration: BoxDecoration(
color: Colors.green,
borderRadius: BorderRadius.all(Radius.circular(35.0))),
child: Column(
children: <Widget> [
Expanded(
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Text(
"Next",
style: TextStyle(
color: Colors.white,
fontSize: 16
),
textAlign: TextAlign.center),
]
)
)
],
)
)
)
],
)
],
)
))
]
);

return Container(
height: 140,
child: Column(
mainAxisAlignment: MainAxisAlignment.end,
children: <Widget>[
previousNextButtons,
])
);
}


Widget render(BuildContext context) {
final controller = ScrollController();
return Column(
children: <Widget>[
Scrollbar(
isAlwaysShown: true,
controller: controller,
child: ListView(
padding: EdgeInsets.zero,
scrollDirection: Axis.vertical,
shrinkWrap: true,
controller: controller,
children: List.generate(
_valuesSelection.length,
(index) => ListTile(
title: CheckboxListTile(
title: Text(_valuesSelection.keys.toList()[index].title),
value: getValueState(_valuesSelection.keys.toList()[index]),
onChanged: (newValue) {
_state.setState(() {
toggleValue(_valuesSelection.keys.toList()[index]);
});
},
controlAffinity: ListTileControlAffinity.leading,
),
),
)
)
),
buttons(context)
],
);
}
}

class Story1 extends Story {
Story1(state) : super(state) {

Value value1 = Value("1");
value1.title = "Value One";
this.addValue(value1);

Value value2 = Value("2");
value2.title = "Value Two";
this.addValue(value2);

Value value3 = Value("3");
value2.title = "Value Three";
this.addValue(value2);

Value value4 = Value("4");
value4.title = "Value Four";
this.addValue(value4);

Value value5 = Value("5");
value5.title = "Value Five";
this.addValue(value5);

}
}

class Story2 extends Story {
Story2(state) : super(state) {

Value value1 = Value("1");
value1.title = "Value One";
this.addValue(value1);

Value value2 = Value("2");
value2.title = "Value Two";
this.addValue(value2);

Value value3 = Value("3");
value2.title = "Value Three";
this.addValue(value2);

}
}

class StoryStartPage extends StatefulWidget {

int _storyNumber = 1;

StoryStartPage(this._storyNumber);

@override
_StoryStartState createState() => _StoryStartState(_storyNumber);
}

class _StoryStartState extends State<StoryStartPage> {

int storyNumber = 1;

Story story;

_StoryStartState(this.storyNumber);

@override
void initState() {
super.initState();
if(story == null) {
story = StoryFactory(this).getStory(storyNumber);
}
}

@override
Widget build(BuildContext context) {
if(story != null) {
return SafeArea(child: Scaffold(
body: story.render(context))
);
} else {
return Scaffold();
}
}
}

class StoryFactory {

static final StoryFactory _singleton = new StoryFactory._internal(_state);

Map<String, Story> allStories = {};

static State _state;

factory StoryFactory(state) {
_state = state;
return _singleton;
}

StoryFactory._internal(state) {
allStories.addAll({"1": Story1(state)});
allStories.addAll({"2": Story2(state)});
}

Story getStory(storyNumber) {
return allStories[storyNumber.toString()];
}

List<Story> getAllStories() {
return allStories.values.toList();
}

}

Future<void> main() async {
WidgetsFlutterBinding.ensureInitialized();
runApp(MyApp());
}

class MyApp extends StatelessWidget {

StatefulWidget _homePage = StoryStartPage(1);

@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'MyApp',
theme: ThemeData.dark(),
home: _homePage,
);
}

MyApp();
}

最佳答案

基本上,这里的问题是您正在尝试重建所有内容。
当他们说,一切都是小部件:信任他们。
我要说的是,您的“故事”必须是一个小部件。如果这样做,它将继承很多东西,包括基本StatefullWidget包括的状态管理。
我已经将您的代码更新为一个有效的示例。不要犹豫,问一下您是否有得到的东西。

import 'package:flutter/material.dart';

class Value {
String _id;
String title;

Value(id) {
_id = id;
}
}

class Story extends StatefulWidget {
@override
State<StatefulWidget> createState() => _StoryState();
Map<Value, bool> _valuesSelection = {};

void addValue(Value value, {bool enabled = false}) {
_valuesSelection.putIfAbsent(value, () => enabled);
}

bool getValueState(Value value) {
return _valuesSelection[value];
}

void toggleValue(Value value) {
_valuesSelection[value] = !_valuesSelection[value];
}

void enableValue(Value value) {
_valuesSelection[value] = true;
}

void disableValue(Value value) {
_valuesSelection[value] = false;
}

Value getValueById(String id) {
return _valuesSelection.keys.where((element) => element._id == id).toList()[0];
}

List<Value> getAllValues() {
return _valuesSelection.keys.toList();
}
}

class _StoryState extends State<Story> {
Widget buttons(BuildContext context) {
Widget previousNextButtons = Row(children: <Widget>[
Expanded(
child: Container(
padding: EdgeInsets.all(20),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: <Widget>[
Column(
children: <Widget>[
FlatButton(
onPressed: () {
var previousStoryPageWidget = StoryStartPage(1);
Future(() {
Navigator.of(context).push(MaterialPageRoute(
builder: (BuildContext context) => previousStoryPageWidget));
});
},
child: Container(
height: 50,
width: 150,
decoration: BoxDecoration(
color: Colors.red,
borderRadius: BorderRadius.all(Radius.circular(35.0))),
child: Column(
children: <Widget>[
Expanded(
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Text("Previous",
style:
TextStyle(color: Colors.white, fontSize: 16),
textAlign: TextAlign.center),
]))
],
)))
],
),
Column(
children: <Widget>[
FlatButton(
onPressed: () {
// if OK button is active
var nextStoryPageWidget = StoryStartPage(1);
Future(() {
Navigator.of(context).push(MaterialPageRoute(
builder: (BuildContext context) => nextStoryPageWidget));
});
},
child: Container(
height: 50,
width: 150,
decoration: BoxDecoration(
color: Colors.green,
borderRadius: BorderRadius.all(Radius.circular(35.0))),
child: Column(
children: <Widget>[
Expanded(
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Text("Next",
style:
TextStyle(color: Colors.white, fontSize: 16),
textAlign: TextAlign.center),
]))
],
)))
],
)
],
)))
]);

return Container(
height: 140,
child: Column(mainAxisAlignment: MainAxisAlignment.end, children: <Widget>[
previousNextButtons,
]));
}

Widget build(BuildContext context) {
final controller = ScrollController();
return Column(
children: <Widget>[
Scrollbar(
isAlwaysShown: true,
controller: controller,
child: ListView(
padding: EdgeInsets.zero,
scrollDirection: Axis.vertical,
shrinkWrap: true,
controller: controller,
children: List.generate(
widget._valuesSelection.length,
(index) => ListTile(
title: CheckboxListTile(
title: Text(widget._valuesSelection.keys.toList()[index].title),
value:
widget.getValueState(widget._valuesSelection.keys.toList()[index]),
onChanged: (newValue) {
setState(() {
widget.toggleValue(widget._valuesSelection.keys.toList()[index]);
});
},
controlAffinity: ListTileControlAffinity.leading,
),
),
))),
buttons(context)
],
);
}
}

class Story1 extends Story {
Story1(state) : super() {
Value value1 = Value("1");
value1.title = "Value One";
this.addValue(value1);

Value value2 = Value("2");
value2.title = "Value Two";
this.addValue(value2);

Value value3 = Value("3");
value2.title = "Value Three";
this.addValue(value2);

Value value4 = Value("4");
value4.title = "Value Four";
this.addValue(value4);

Value value5 = Value("5");
value5.title = "Value Five";
this.addValue(value5);
}
}

class Story2 extends Story {
Story2(state) : super() {
Value value1 = Value("1");
value1.title = "Value One";
this.addValue(value1);

Value value2 = Value("2");
value2.title = "Value Two";
this.addValue(value2);

Value value3 = Value("3");
value2.title = "Value Three";
this.addValue(value2);
}
}

class StoryStartPage extends StatefulWidget {
int _storyNumber = 1;

StoryStartPage(this._storyNumber);

@override
_StoryStartState createState() => _StoryStartState(_storyNumber);
}

class _StoryStartState extends State<StoryStartPage> {
int storyNumber = 1;

Story story;

_StoryStartState(this.storyNumber);

@override
void initState() {
super.initState();
if (story == null) {
story = StoryFactory(this).getStory(storyNumber);
}
}

@override
Widget build(BuildContext context) {
if (story != null) {
return SafeArea(child: Scaffold(body: story));
} else {
return Scaffold();
}
}
}

class StoryFactory {
static final StoryFactory _singleton = new StoryFactory._internal(_state);

Map<String, Story> allStories = {};

static State _state;

factory StoryFactory(state) {
_state = state;
return _singleton;
}

StoryFactory._internal(state) {
allStories.addAll({"1": Story1(state)});
allStories.addAll({"2": Story2(state)});
}

Story getStory(storyNumber) {
return allStories[storyNumber.toString()];
}

List<Story> getAllStories() {
return allStories.values.toList();
}
}

Future<void> main() async {
WidgetsFlutterBinding.ensureInitialized();
runApp(MyApp());
}

class MyApp extends StatelessWidget {
StatefulWidget _homePage = StoryStartPage(1);

@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'MyApp',
theme: ThemeData.dark(),
home: _homePage,
);
}

MyApp();
}

关于flutter - 如果页面已更改,Flutter应用程序复选框将停止切换状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62493048/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com