Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.

Commit 166822e

Browse files
🎨 Use comment to format data blobs
1 parent 316afbf commit 166822e

File tree

2 files changed

+8
-86
lines changed

2 files changed

+8
-86
lines changed

packages/google_sign_in/google_sign_in/lib/widgets.dart

Lines changed: 4 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -117,48 +117,9 @@ class GoogleUserCircleAvatar extends StatelessWidget {
117117
/// This is an transparent 1x1 gif image
118118
final Uint8List _transparentImage = Uint8List.fromList(
119119
[
120-
0x47,
121-
0x49,
122-
0x46,
123-
0x38,
124-
0x39,
125-
0x61,
126-
0x01,
127-
0x00,
128-
0x01,
129-
0x00,
130-
0x80,
131-
0x00,
132-
0x00,
133-
0xFF,
134-
0xFF,
135-
0xFF,
136-
0x00,
137-
0x00,
138-
0x00,
139-
0x21,
140-
0xF9,
141-
0x04,
142-
0x01,
143-
0x00,
144-
0x00,
145-
0x00,
146-
0x00,
147-
0x2C,
148-
0x00,
149-
0x00,
150-
0x00,
151-
0x00,
152-
0x01,
153-
0x00,
154-
0x01,
155-
0x00,
156-
0x00,
157-
0x02,
158-
0x02,
159-
0x44,
160-
0x01,
161-
0x00,
162-
0x3B,
120+
0x47, 0x49, 0x46, 0x38, 0x39, 0x61, 0x01, 0x00, 0x01, 0x00, 0x80, 0x00, //
121+
0x00, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x21, 0xF9, 0x04, 0x01, 0x00, //
122+
0x00, 0x00, 0x00, 0x2C, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, //
123+
0x00, 0x02, 0x02, 0x44, 0x01, 0x00, 0x3B
163124
],
164125
);

packages/google_sign_in/google_sign_in/test/widgets_test.dart

Lines changed: 4 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -52,49 +52,10 @@ class _MockHttpRequest extends Fake implements HttpClientRequest {
5252
/// This is an transparent 1x1 gif image
5353
final Uint8List _transparentImage = Uint8List.fromList(
5454
[
55-
0x47,
56-
0x49,
57-
0x46,
58-
0x38,
59-
0x39,
60-
0x61,
61-
0x01,
62-
0x00,
63-
0x01,
64-
0x00,
65-
0x80,
66-
0x00,
67-
0x00,
68-
0xFF,
69-
0xFF,
70-
0xFF,
71-
0x00,
72-
0x00,
73-
0x00,
74-
0x21,
75-
0xF9,
76-
0x04,
77-
0x01,
78-
0x00,
79-
0x00,
80-
0x00,
81-
0x00,
82-
0x2C,
83-
0x00,
84-
0x00,
85-
0x00,
86-
0x00,
87-
0x01,
88-
0x00,
89-
0x01,
90-
0x00,
91-
0x00,
92-
0x02,
93-
0x02,
94-
0x44,
95-
0x01,
96-
0x00,
97-
0x3B,
55+
0x47, 0x49, 0x46, 0x38, 0x39, 0x61, 0x01, 0x00, 0x01, 0x00, 0x80, 0x00, //
56+
0x00, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x21, 0xF9, 0x04, 0x01, 0x00, //
57+
0x00, 0x00, 0x00, 0x2C, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, //
58+
0x00, 0x02, 0x02, 0x44, 0x01, 0x00, 0x3B //
9859
],
9960
);
10061

0 commit comments

Comments
 (0)