skip to Main Content

Flutter – SingleChildScrollView does not scroll down, even though there are items beneath what is shown

This is the full code. import 'dart:async'; import 'dart:convert'; import 'package:flutter/foundation.dart'; import 'package:flutter/material.dart'; import 'package:http/http.dart' as http; Future<List<Event>> fetchEvents(http.Client client) async { final response = await http.get(Uri.parse('https://my-json-server.typicode.com/Evgen1987RUS/test-json/events/')); // TODO: тестовый джей сон поменять на нормальный return compute(parseEvents, response.body); } List<Event>…

VIEW QUESTION
Back To Top
Search