fondoApp property

BoxDecoration get fondoApp

Implementation

static BoxDecoration get fondoApp => const BoxDecoration(
        gradient: LinearGradient(
            begin: Alignment.topLeft,
            end: Alignment.bottomRight,
            stops: [
          0.2,
          0.2,
          0.8,
          1.0
        ],
            colors: [
          Colors.black54,
          Colors.black45,
          Color.fromRGBO(32, 51, 145, 1),
          Color.fromRGBO(121, 58, 183, 1)
        ]));