Skip to content

Instantly share code, notes, and snippets.

@nitishk72
Created December 8, 2018 15:46
Show Gist options
  • Save nitishk72/df9e0592523572677a6fbb3f30136064 to your computer and use it in GitHub Desktop.
Save nitishk72/df9e0592523572677a6fbb3f30136064 to your computer and use it in GitHub Desktop.
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:
new SliverChildListDelegate(getTopWidgets())),
),
new SliverPadding(padding: const EdgeInsets.all(10.0),
sliver: new SliverList(delegate: new SliverChildListDelegate(
getSfListTiles()
))),
new SliverPadding(padding: const EdgeInsets.all(10.0),
sliver: new SliverList(delegate: new SliverChildListDelegate(
getWorkStatementTiles()
))),
]
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment