gpt4 book ai didi

flutter - 使用 Navigator.pushNamed() 传递给 Stateful Flutter Widget 的数据为 null

转载 作者:行者123 更新时间:2023-12-03 04:57:21 26 4
gpt4 key购买 nike

使用 Flutter,我试图通过构造函数将数据传递到新屏幕。

但是,这有点特殊,因为屏幕是有状态的小部件,我使用的是 Navigation Routes 导航方法。

如果重要的话,数据也恰好是 int 类型。

命名路由导航设置如下:

void main() => runApp(Main());

class Main extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
initialRoute: PreLoadScreen.id,
//initialRoute: TemporaryScreen.id,
routes: {
TemporaryScreen.id: (context) => TemporaryScreen(),
InfoScreen.id: (context) => InfoScreen(),
PreLoadScreen.id: (context) => PreLoadScreen(),
StatsScreen.id: (context) => StatsScreen(),
RideScreen.id: (context) => RideScreen(),
AudioScreen.id: (context) => AudioScreen(),
},
);
}
}

我将数据传递到的屏幕具有以下构造函数代码:
class StatsScreen extends StatefulWidget {
static const String id = 'stats_screen';
int tableID; // current shift table ID being passed in from super

// Constructor required for having data passed in
StatsScreen({Key key, @required this.tableID}) : super(key: key);

@override
_StatsScreenState createState() {
print('statsscreen DEBUG: $tableID'); // <-- this shows the data passed was NULL! :(
return _StatsScreenState();
}
}

我从中传递数据的屏幕包含以下代码:
void _checkShiftStatus() async {
bool userClockedIn = await ShiftManager().isUserClockedIn();

int tableName = await ShiftManager().getActiveRideTableName();
print('preload DEBUG: tablename: $tableName'); // <-- this verifies the data is NOT null here.

if (userClockedIn) {
Navigator.pushNamed(context, StatsScreen.id,
arguments: {'tableID': tableName}); // <--- something is wrong here, presumably
} else {
shouldDisplayStartShift = !userClockedIn;
showProgressSpinner = false;
}
}

我尝试将可疑行更改为:
Navigator.pushNamed(context, StatsScreen.id,
arguments: tableName);

和...
Navigator.pushNamed(context, StatsScreen.id,
arguments: {tableName});

但在目标屏幕中得到相同的结果(传递的数据为空)。这有点像棒球……击球手是初始屏幕…… catch 手是我们要导航到的屏幕。球就是数据。除了在我的情况下,击球手似乎是萨米索萨而且球在某个地方的公园外面......这对小熊队来说很好,但对我来说不是。

我还尝试过谷歌搜索、文档、stackoverflow(甚至 this specific answer ...但我似乎无法从中提取相关含义)和百加得...我变得非常恼火。请有人指出我的语法错误以及它在哪一行。谢谢!

最佳答案

您必须使用 ModalRoute 访问数据。

class Delete2 extends StatefulWidget {
Delete2({Key key}) : super(key: key);

@override
_Delete2State createState() => _Delete2State();
}

class _Delete2State extends State<Delete2> {
@override
Widget build(BuildContext context) {
final int args = ModalRoute.of(context).settings.arguments;
return Container(
child: Text(args.toString()),
);
}
}

( Full Documentation)

关于flutter - 使用 Navigator.pushNamed() 传递给 Stateful Flutter Widget 的数据为 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60348447/

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