Change search_companies.dart background

main
David 2023-06-09 20:39:24 +02:00
parent c4117427a6
commit 61af455f68
1 changed files with 3 additions and 3 deletions

View File

@ -12,12 +12,12 @@ class _AllWorkersScreenState extends State<AllWorkersScreen> {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Container( return Container(
decoration: BoxDecoration( decoration: const BoxDecoration(
gradient: LinearGradient( gradient: LinearGradient(
colors: [Colors.deepOrange.shade300, Colors.blueAccent], colors: [Colors.cyan, Colors.white60],
begin: Alignment.centerLeft, begin: Alignment.centerLeft,
end: Alignment.centerRight, end: Alignment.centerRight,
stops: const [0.2, 0.9], stops: [0.2, 0.9],
) )
), ),
child: Scaffold( child: Scaffold(