Skip to content

Commit 886d776

Browse files
Fix bug of blue rectangle (#340)
* Fix bug of blue rectangle * camera: Remove extra dot
1 parent db28ec5 commit 886d776

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: lib/pages/forms_pages/components/biting_form.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ class _BitingFormState extends State<BitingForm> {
276276
}
277277
: null,
278278
child: Container(
279-
color: Colors.blue..withValues(alpha: 0.0),
279+
color: Colors.transparent,
280280
height: mediaQuery.height * 0.1,
281281
width: mediaQuery.width * 0.18,
282282
),

Diff for: lib/pages/forms_pages/components/whatsapp_camera.dart/camera_whatsapp.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ class _WhatsappCameraState extends State<WhatsappCamera>
237237
padding: const EdgeInsets.only(bottom: 32, right: 64),
238238
child: CircleAvatar(
239239
radius: 20,
240-
backgroundColor: Colors.black..withValues(alpha: 0.6),
240+
backgroundColor: Colors.black.withValues(alpha: 0.6),
241241
child: IconButton(
242242
color: Colors.white,
243243
onPressed: () async {

0 commit comments

Comments
 (0)