Skip to content

Instantly share code, notes, and snippets.

@IhwanID
Created April 8, 2020 04:21
Show Gist options
  • Select an option

  • Save IhwanID/da54204638ca04001c95efa2750effd0 to your computer and use it in GitHub Desktop.

Select an option

Save IhwanID/da54204638ca04001c95efa2750effd0 to your computer and use it in GitHub Desktop.
Create Background Gradient in Flutter
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(
title: Text("Background Gradient"),
elevation: 0,
),
body: Container(
decoration: BoxDecoration(
gradient: LinearGradient(
colors: [Colors.blue, Colors.blueGrey],
begin: Alignment.topCenter,
end: Alignment.bottomCenter)),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment