flutter 渐变色

2020-08-16  本文已影响0人  喜剧收尾_XWX
import 'package:flutter/material.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    // TODO: implement build
    return MaterialApp(
      title: "BoxDecoration渐变色线性",
      home: Scaffold(
          appBar: AppBar(
            title: Text('BoxDecoration渐变色线性'),
          ),
          body: Center(
            child: Container(
              width: 200,
              height: 200,
              decoration: BoxDecoration(
                  //渐变色
                  gradient: LinearGradient(
                      begin: FractionalOffset(0.0, 1.0),
                      end: FractionalOffset(1.0, 1.0),
                      colors: <Color>[
                    Colors.red,
                    Colors.green,
                    Colors.yellow,
                    Colors.grey,
                  ])),
            ),
          )),
    );
  }
}
上一篇 下一篇

猜你喜欢

热点阅读