Skip to content

Instantly share code, notes, and snippets.

@rajajawahar
Created January 11, 2019 17:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rajajawahar/6783f65e7cd8652ebf091d98053282ee to your computer and use it in GitHub Desktop.
Save rajajawahar/6783f65e7cd8652ebf091d98053282ee to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
// Here we take the value from the MyHomePage object that was created by
// the App.build method, and use it to set our appbar title.
title: Text(widget.title),
),
body: ListView.custom(
scrollDirection: Axis.vertical,
reverse: false,
childrenDelegate: new MyCustomDelegate(),));
}
}
List<String> listItems = ["One", "Two", "Three", "Four","Five","Six"];
class MyCustomDelegate extends SliverChildDelegate {
@override
int get estimatedChildCount => listItems.length;
@override
bool shouldRebuild(SliverChildDelegate oldDelegate) {
return true;
}
@override
Widget build(BuildContext context, int index) {
return index < estimatedChildCount
? Container(
padding: new EdgeInsets.only(top: 16.0),
child: new Text(listItems[index]),
)
: null;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment