166 lines
6.9 KiB
Dart
166 lines
6.9 KiB
Dart
import 'dart:ui';
|
|
|
|
import 'package:flutter/material.dart';
|
|
import 'package:sk_base_mobile/constants/bg_color.dart';
|
|
import 'package:sk_base_mobile/util/screen_adaper_util.dart';
|
|
|
|
class BackColors extends StatelessWidget {
|
|
const BackColors({super.key});
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
var size = MediaQuery.sizeOf(context);
|
|
return Container(
|
|
color: Colors.white,
|
|
margin: EdgeInsets.only(top: 30),
|
|
child: Stack(
|
|
children: [
|
|
Positioned(
|
|
top: 100,
|
|
child: Container(
|
|
height: size.height * 0.5,
|
|
width: size.width * 0.5,
|
|
decoration: BoxDecoration(
|
|
borderRadius: BorderRadius.circular(30),
|
|
gradient: LinearGradient(
|
|
begin: Alignment.topLeft,
|
|
end: Alignment.centerRight,
|
|
colors: [
|
|
lightOrange.withOpacity(.0),
|
|
lightOrange.withOpacity(.1),
|
|
lightOrange.withOpacity(.2),
|
|
lightOrange.withOpacity(.3),
|
|
lightOrange.withOpacity(.4),
|
|
lightOrange.withOpacity(.4),
|
|
lightOrange.withOpacity(.3),
|
|
lightOrange.withOpacity(.2),
|
|
lightOrange.withOpacity(.1),
|
|
lightOrange.withOpacity(0),
|
|
])),
|
|
)),
|
|
Positioned(
|
|
top: 100,
|
|
right: -50,
|
|
child: Container(
|
|
height: size.height * 0.5,
|
|
width: size.width * 0.3,
|
|
decoration: BoxDecoration(
|
|
borderRadius: BorderRadius.circular(30),
|
|
gradient: LinearGradient(
|
|
begin: Alignment.topLeft,
|
|
end: Alignment.centerRight,
|
|
colors: [
|
|
lightOrange.withOpacity(.0),
|
|
lightOrange.withOpacity(.1),
|
|
lightOrange.withOpacity(.2),
|
|
lightOrange.withOpacity(.3),
|
|
lightOrange.withOpacity(.2),
|
|
lightOrange.withOpacity(.1),
|
|
lightOrange.withOpacity(0),
|
|
])),
|
|
)),
|
|
Positioned(
|
|
bottom: 100,
|
|
right: -50,
|
|
child: Container(
|
|
height: size.height * 0.5,
|
|
width: size.width * 0.6,
|
|
decoration: BoxDecoration(
|
|
shape: BoxShape.circle,
|
|
gradient: LinearGradient(
|
|
begin: Alignment.topLeft,
|
|
end: Alignment.centerRight,
|
|
colors: [
|
|
lightAccentBlue.withOpacity(.0),
|
|
lightAccentBlue.withOpacity(.1),
|
|
lightAccentBlue.withOpacity(.2),
|
|
lightAccentBlue.withOpacity(.3),
|
|
lightAccentBlue.withOpacity(.4),
|
|
lightAccentBlue.withOpacity(.4),
|
|
lightAccentBlue.withOpacity(.3),
|
|
lightAccentBlue.withOpacity(.2),
|
|
lightAccentBlue.withOpacity(.1),
|
|
lightAccentBlue.withOpacity(0),
|
|
])),
|
|
)),
|
|
Positioned(
|
|
bottom: -30,
|
|
child: Container(
|
|
height: size.height * 0.3,
|
|
width: size.width * 0.6,
|
|
decoration: BoxDecoration(
|
|
shape: BoxShape.circle,
|
|
gradient: LinearGradient(
|
|
begin: Alignment.topLeft,
|
|
end: Alignment.centerRight,
|
|
colors: [
|
|
lightAccentBlue.withOpacity(.0),
|
|
lightAccentBlue.withOpacity(.1),
|
|
lightAccentBlue.withOpacity(.2),
|
|
lightAccentBlue.withOpacity(.3),
|
|
lightAccentBlue.withOpacity(.4),
|
|
lightAccentBlue.withOpacity(.4),
|
|
lightAccentBlue.withOpacity(.3),
|
|
lightAccentBlue.withOpacity(.2),
|
|
lightAccentBlue.withOpacity(.1),
|
|
lightAccentBlue.withOpacity(0),
|
|
])),
|
|
)),
|
|
Positioned(
|
|
bottom: 1,
|
|
left: 1,
|
|
top: !ScreenAdaper.isLandspace() ? 100 : 200,
|
|
right: 1,
|
|
child: Container(
|
|
decoration: BoxDecoration(
|
|
shape: BoxShape.circle,
|
|
gradient: LinearGradient(
|
|
begin: Alignment.topLeft,
|
|
end: Alignment.centerRight,
|
|
colors: [
|
|
Colors.pinkAccent.withOpacity(.0),
|
|
Colors.pinkAccent.withOpacity(.1),
|
|
Colors.pinkAccent.withOpacity(.2),
|
|
Colors.pinkAccent.withOpacity(.3),
|
|
Colors.pinkAccent.withOpacity(.4),
|
|
Colors.pinkAccent.withOpacity(.4),
|
|
Colors.pinkAccent.withOpacity(.3),
|
|
Colors.pinkAccent.withOpacity(.2),
|
|
Colors.pinkAccent.withOpacity(.1),
|
|
Colors.pinkAccent.withOpacity(0),
|
|
])),
|
|
)),
|
|
Positioned(
|
|
bottom: 1,
|
|
right: 1,
|
|
child: Container(
|
|
height: size.height * 0.3,
|
|
width: size.width * 0.6,
|
|
decoration: BoxDecoration(
|
|
shape: BoxShape.circle,
|
|
gradient: LinearGradient(
|
|
begin: Alignment.topLeft,
|
|
end: Alignment.centerRight,
|
|
colors: [
|
|
Colors.greenAccent.withOpacity(.0),
|
|
Colors.greenAccent.withOpacity(.1),
|
|
Colors.greenAccent.withOpacity(.2),
|
|
Colors.greenAccent.withOpacity(.3),
|
|
Colors.greenAccent.withOpacity(.4),
|
|
Colors.greenAccent.withOpacity(.4),
|
|
Colors.greenAccent.withOpacity(.3),
|
|
Colors.greenAccent.withOpacity(.2),
|
|
Colors.greenAccent.withOpacity(.1),
|
|
Colors.greenAccent.withOpacity(0),
|
|
])),
|
|
)),
|
|
Positioned.fill(
|
|
child: BackdropFilter(
|
|
filter: ImageFilter.blur(sigmaY: 30, sigmaX: 30),
|
|
child: SizedBox(),
|
|
)),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|