Skip to content

Instantly share code, notes, and snippets.

View e200's full-sized avatar
👋
I may be slow to respond.

E L E A N D R O e200

👋
I may be slow to respond.
View GitHub Profile
@e200
e200 / gist:3857e0160d6cd344d2a6b46883464341
Created August 17, 2020 13:22 — forked from karanvs/gist:44599464f72988b138f5bc783f423b07
A solution to putting multiple ListViews inside a ScrollView in Flutter
return new Scaffold(
appBar: new AppBar(
title: new Text("Project Details"),
backgroundColor: Colors.blue[800]),
body:
new CustomScrollView(
slivers: <Widget>[
new SliverPadding(padding: const EdgeInsets.only(left: 10.0,right: 10.0,
top: 10.0,bottom: 0.0),
sliver: new SliverList(delegate:
import 'package:flutter/material.dart';
import 'dart:async';
import 'dart:math';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
// This widget is the root of your application.