Skip to content

Instantly share code, notes, and snippets.

@Amit2016-17
Forked from the-lazy-val/step4.dart
Created November 2, 2020 18:20
Show Gist options
  • Select an option

  • Save Amit2016-17/d1dc9de55b3b8c10ad69480720912b88 to your computer and use it in GitHub Desktop.

Select an option

Save Amit2016-17/d1dc9de55b3b8c10ad69480720912b88 to your computer and use it in GitHub Desktop.
......
@override
Widget build(BuildContext context) {
String bgImage = now.hour > 6 && now.hour < 19 ? "assets/day.png" : "assets/night.jpg";
return Scaffold(
body: Container(
decoration: BoxDecoration(
image: DecorationImage(
image: AssetImage(bgImage),
fit: BoxFit.cover
)
),
child: Center(
......
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment