Created
August 29, 2019 13:11
-
-
Save buddypia/caeb1c9e56bb358ae15c2ee950066738 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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( | |
// This is the theme of your application. | |
// | |
// Try running your application with "flutter run". You'll see the | |
// application has a blue toolbar. Then, without quitting the app, try | |
// changing the primarySwatch below to Colors.green and then invoke | |
// "hot reload" (press "r" in the console where you ran "flutter run", | |
// or simply save your changes to "hot reload" in a Flutter IDE). | |
// Notice that the counter didn't reset back to zero; the application | |
// is not restarted. | |
primarySwatch: Colors.blue, | |
), | |
home: ScrollTest(), | |
); | |
} | |
} | |
class ScrollTest extends StatefulWidget { | |
@override | |
_ScrollTestState createState() => _ScrollTestState(); | |
} | |
class _ScrollTestState extends State<ScrollTest> { | |
ScrollController _scrollController = ScrollController(); | |
@override | |
void initState() { | |
this._scrollController.addListener(() { | |
print("Execute Listner.........."); | |
}); | |
super.initState(); | |
} | |
@override | |
void dispose() { | |
this._scrollController?.dispose(); | |
super.dispose(); | |
} | |
@override | |
Widget build(BuildContext context) { | |
return ListView.builder( | |
physics: AlwaysScrollableScrollPhysics(), | |
controller: _scrollController, | |
itemCount: 1, | |
itemBuilder: (context, position) { | |
return Text("Hello Developer~ $position"); | |
}, | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment