| LCOV - code coverage report | ||||||||||||||||||||||
|
||||||||||||||||||||||
Line data Source code 1 : import 'package:flutter/material.dart'; 2 : 3 : class Background extends StatelessWidget { 4 12 : const Background({super.key}); 5 : 6 0 : @override 7 : Widget build(BuildContext context) { 8 0 : return Container( 9 : decoration: const BoxDecoration( 10 : gradient: RadialGradient( 11 : colors: [Color.fromARGB(255, 101, 96, 255), Colors.white], 12 : stops: [1e-10, 0.99], 13 : radius: 5, 14 : center: Alignment(-5.5, -4), 15 : ) 16 : ), 17 : ); 18 : } 19 : } |
| Generated by: LCOV version 2.3-1 |