Revert "formatted all files."

This reverts commit 04250ebc98.
This commit is contained in:
Faris Armoush
2025-06-12 16:04:49 +03:00
parent 218f43bacb
commit c642ba2644
473 changed files with 4335 additions and 5417 deletions

View File

@ -1,8 +1,8 @@
import 'package:flutter/material.dart';
import 'package:syncrow_web/utils/color_manager.dart';
InputDecoration? textBoxDecoration(
{bool suffixIcon = false, double radios = 8}) =>
import 'color_manager.dart';
InputDecoration? textBoxDecoration({bool suffixIcon = false, double radios = 8}) =>
InputDecoration(
focusColor: ColorsManager.grayColor,
suffixIcon: suffixIcon ? const Icon(Icons.search) : null,
@ -34,7 +34,7 @@ InputDecoration? textBoxDecoration(
BoxDecoration containerDecoration = BoxDecoration(
boxShadow: [
BoxShadow(
color: Colors.grey.withValues(alpha: 0.3),
color: Colors.grey.withOpacity(0.3),
spreadRadius: 2,
blurRadius: 4,
offset: const Offset(0, 5), // changes position of shadow
@ -46,7 +46,7 @@ BoxDecoration containerDecoration = BoxDecoration(
BoxDecoration containerWhiteDecoration = BoxDecoration(
boxShadow: [
BoxShadow(
color: Colors.grey.withValues(alpha: 0.3),
color: Colors.grey.withOpacity(0.3),
spreadRadius: 2,
blurRadius: 4,
offset: const Offset(0, 5), // changes position of shadow
@ -59,7 +59,7 @@ BoxDecoration subSectionContainerDecoration = BoxDecoration(
color: ColorsManager.whiteColors,
boxShadow: [
BoxShadow(
color: Colors.black.withValues(alpha: 0.1),
color: Colors.black.withOpacity(0.1),
blurRadius: 10,
spreadRadius: 1,
offset: const Offset(0, 2),
@ -70,7 +70,7 @@ BoxDecoration subSectionContainerDecoration = BoxDecoration(
final secondarySection = BoxDecoration(
boxShadow: [
BoxShadow(
color: Colors.black.withValues(alpha: 0.1),
color: Colors.black.withOpacity(0.1),
spreadRadius: 1,
blurRadius: 7,
offset: const Offset(0, 10),