San*_*thi 8 dart android-studio flutter
我的飞镖分析在代码中显示以下错误:
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)
Run Code Online (Sandbox Code Playgroud)
在以下代码中:
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,
),
],
),
],
),
),
);
}
}
Run Code Online (Sandbox Code Playgroud)
Net*_*Zaf 22
删除const之前的关键字ListTile。
一般来说,为了让一个小部件是编译时常量,它的所有属性也应该是编译时常量。在您的情况下,这是不可能的,因为该title属性只能通过评估来实现name,而这仅在运行时才知道。
| 归档时间: |
|
| 查看次数: |
5142 次 |
| 最近记录: |