473,434 Members | 1,575 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,434 software developers and data experts.

Flutter 'List<Post>' has no instance getter 'lenght'

I'm new to flutter. I am getting an error like this, can you help me?
I've been stuck in http for json for 5 days, the codes in the source don't work. :( L

It says list not entered but when I enter it does not accept it. I don't know on which line the problem is, but I got a warning like. "The following NoSuchMethodError was thrown building FutureBuilder(dirty, state: _FutureBuilderState#447cc):"

https://dosya.co/w8rxecrl44rz/Capture.JPG.html
https://dosya.co/vk6rd85o7zkx/Capture.JPG2.JPG.html

Expand|Select|Wrap|Line Numbers
  1. import 'dart:convert';
  2.  
  3. Post postFromJson(String str) => Post.fromJson(json.decode(str));
  4.  
  5. String postToJson(Post data) => json.encode(data.toJson());
  6.  
  7. class Post {
  8.   Post({
  9.     required this.userId,
  10.     required this.id,
  11.     required this.title,
  12.     required this.body,
  13.   });
  14.  
  15.   int userId;
  16.   int id;
  17.   String title;
  18.   String body;
  19.  
  20.   factory Post.fromJson(Map<String, dynamic> json) => Post(
  21.     userId: json["userId"],
  22.     id: json["id"],
  23.     title: json["title"],
  24.     body: json["body"],
  25.   );
  26.  
  27.   Map<String, dynamic> toJson() => {
  28.     "userId": userId,
  29.     "id": id,
  30.     "title": title,
  31.     "body": body,
  32.   };
  33. }
Expand|Select|Wrap|Line Numbers
  1. import 'dart:convert';
  2.  
  3.  
  4. import 'package:flutter/material.dart';
  5. import 'package:http/http.dart' as http;
  6. import 'package:json_http_place_holder/post.dart';
  7.  
  8. void main() {
  9.   runApp(const MyApp());
  10. }
  11.  
  12. class MyApp extends StatefulWidget {
  13.   const MyApp({Key? key}) : super(key: key);
  14.  
  15.   @override
  16.   State<MyApp> createState() => _MyAppState();
  17. }
  18.  
  19. class _MyAppState extends State<MyApp> {
  20.   Future getData = Future(() => null);
  21.   var con = Uri.parse("https://jsonplaceholder.typicode.com/posts");
  22.  
  23.   Future<List<Post>> fetchPost() async {
  24.     List<Post> result = <Post>[];
  25.     final response = await http.get(con);
  26.     if (response.statusCode == 200) {
  27.       List listPost = jsonDecode(response.body);
  28.       for (int i = 0; i < listPost.length; i++) {
  29.         Post item = Post.fromJson(listPost[i]);
  30.         result.add(item);
  31.       }
  32.     }
  33.     return result;
  34.   }
  35.  
  36.   @override
  37.   void initState() {
  38.     // TODO: implement initState
  39.     super.initState();
  40.     getData = fetchPost();
  41.   }
  42.  
  43.   @override
  44.   Widget build(BuildContext context) {
  45.     return MaterialApp(
  46.       title: 'Flutter HTTP json',
  47.       theme: ThemeData(
  48.         primarySwatch: Colors.blue,
  49.       ),
  50.       home: Scaffold(
  51.         body: FutureBuilder(
  52.           future: getData,
  53.           builder: (BuildContext context,  AsyncSnapshot<dynamic> snapshot) {
  54.             if (snapshot.connectionState == ConnectionState.waiting) {
  55.               return const Center(
  56.                 child: CircularProgressIndicator(),
  57.               );
  58.             } else if (snapshot.connectionState == ConnectionState.none) {
  59.               return const Center(
  60.                 child: Text("Bir hata meydana geldi"),
  61.               );
  62.             } else if (snapshot.connectionState == ConnectionState.done) {
  63.               return ListView.separated(itemBuilder: (context,index){
  64.                 return ListTile(
  65.                   leading: Icon(Icons.local_post_office),
  66.                   title: Text(snapshot.data[index].title),
  67.                   subtitle: Text(snapshot.data[index].body),
  68.                 );
  69.               },separatorBuilder: (context,index)=>Divider(),
  70.                 itemCount: snapshot.data.lenght,
  71.               );
  72.             }
  73.             //var d =jsonDecode(snapshot.data.body);
  74.             return Container();
  75.           },
  76.         ),
  77.       ),
  78.     );
  79.   }
  80. }
Sep 13 '21 #1
0 6294

Sign in to post your reply or Sign up for a free account.

Similar topics

3
by: Kiwi | last post by:
Hello. I know a getter can return other thing than a field. I know a setter can do more things than setting a field. I know there are "setter only" cases and "getter only" cases. I do use...
0
by: Jean-Michel POURE | last post by:
Dear friends, I studying the possibility to port Compiere CRM from Oracle to PostgreSQL. As Compiere evolves nearly everyday in CVS, I would like to run the Oracle code without (too much)...
7
by: Tim Marshall | last post by:
Text boxes that are not grouped with a data control seem to cause my screen to flutter when the mouse passes over it. Does anyone know why this might be? -- Tim -...
4
by: Jimbo | last post by:
I am sort of new to C#. Currently have a private property called "_name" in a class. I have written a public getter and setter routine for it called "Name". Currently, the getter for the...
6
by: Peter Franks | last post by:
Is it possible to deserialize a class that has a public property w/ a setter, but no getter? I'm not finding anything that would allow this -- Presuming that is is NOT possible, what are the...
9
by: Andrey Koptyaev | last post by:
What does it mean "fieldRequired.lenght" in php 4.1 ? I know "fieldRequired->lenght" but don't know "fieldRequired.lenght" Please help to understand. Thank you!
3
by: Martin Pöpping | last post by:
Hello, I´m coming from the Java World. Here Programmers often use (like in C++?) getter and setter methods. F.e.: class Mirror{ private int width_;
5
by: Andy B | last post by:
I am trying to figure out how to make an object instance available for all methods of a class. I tried to do something like this: public class test { TheObject Instance = new TheObject();...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.