gpt4 book ai didi

android-studio - 这个常量表达式的计算抛出一个表达式

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

我的 Dart 分析在代码中显示以下错误:

error: Evaluation of this constant expression throws an exception. 
(const_eval_throws_exception at [laundry]
lib\pick_drop_ui\pages\works.dart:97) error: Arguments of a constant creation must be constant expressions.
(const_with_non_constant_argument at [laundry]
lib\pick_drop_ui\pages\works.dart:98) error: Arguments of a constant creation must be constant expressions.
(const_with_non_constant_argument at [laundry]
lib\pick_drop_ui\pages\works.dart:104) error: Evaluation of this constant expression throws an exception.
(const_eval_throws_exception at [laundry]
lib\pick_drop_ui\pages\works.dart:104)

在以下代码中:
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';

class work extends StatefulWidget {
@override
_workState createState() => _workState();
}

class _workState extends State<work> {

var workdata; //Variable to get the snapshort of the works available in the firestore

@override
void initState() {
// TODO: implement initState
super.initState();
print("Called work");
setState(() {
workdata = getData();
});
}


getworkdetails(){
if(workdata != null){
return StreamBuilder(
stream: workdata,
builder: (context,snapshot){
if(snapshot.data != null){
return ListView.builder(
shrinkWrap: true,
itemCount: snapshot.data.documents.length,
itemBuilder: (context,i){
return workcards(snapshot.data.documents[i].data['Name of customer'],snapshot.data.documents[i].data['Address']);
},
);
}else{
return Text("Malfunction");
}
},
);
}else{
print("getting workdata");
}
}




@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text("Jobs Assigned"),
),

body: getworkdetails(),
);
}
}


getData() {
return Firestore.instance.collection('Jobs').snapshots();
}


class workcards extends StatelessWidget{

final name;
final address;

workcards(this.name,this.address);


@override
Widget build(BuildContext context) {
// TODO: implement build
return Card(
color: Colors.blueGrey[50],
child: InkWell(
splashColor: Colors.blue[100].withAlpha(100),
onTap: () {
},
child: Column(
mainAxisSize: MainAxisSize.min,
children: <Widget>[
const ListTile(
leading: Icon(Icons.view_module),
// Error: invalid constant value
title: Text(
name,
style: TextStyle(
fontWeight: FontWeight.w600,
letterSpacing: .5,
),
),
// Error: invalid constant value
subtitle: Text(address),
),
ButtonBar(
children: <Widget>[
RaisedButton(
child: const Text('OPEN'),
onPressed: () {/* ... */},
focusElevation: 10,
),
RaisedButton(
child: const Text('SHARE'),
onPressed: () {/* ... */},
focusElevation: 20,
),
],
),
],
),
),
);
}
}

最佳答案

删除 const ListTile 之前的关键字.

一般来说,为了让一个小部件是编译时常量,它的所有属性也应该是编译时常量。在您的情况下这是不可能的,因为 title属性只能通过评估 name 来实现,这仅在运行时已知。

关于android-studio - 这个常量表达式的计算抛出一个表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61227026/

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