Skip to content

Commit 61da816

Browse files
committed
fix: formate
1 parent 5c59d8c commit 61da816

File tree

4 files changed

+2
-163
lines changed

4 files changed

+2
-163
lines changed

example/lib/main.dart

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,6 @@ part 'src/components/network_content.dart';
3838

3939
part 'src/components/page.dart';
4040

41-
part 'src/components/traces_content.dart';
42-
4341
part 'src/components/flows_content.dart';
4442

4543
void main() {

example/lib/src/components/traces_content.dart

Lines changed: 0 additions & 157 deletions
This file was deleted.

example/lib/src/screens/apm_page.dart

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@ class _ApmPageState extends State<ApmPage> {
3636
),
3737
const SectionTitle('Network'),
3838
const NetworkContent(),
39-
const SectionTitle('Traces'),
40-
const TracesContent(),
4139
const SectionTitle('Flows'),
4240
const FlowsContent(),
4341
const SectionTitle('Screen Loading'),

test/instabug_test.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,13 +197,13 @@ void main() {
197197
).called(1);
198198
});
199199

200-
test('[setPrimaryColor] should call host method', () async {
200+
test('[setPrimaryColor] should call setTheme method', () async {
201201
const color = Color(0x00000000);
202202

203203
await Instabug.setPrimaryColor(color);
204204

205205
verify(
206-
mHost.setPrimaryColor(color.value),
206+
mHost.setTheme({'primaryColor': color.toString()}),
207207
).called(1);
208208
});
209209

0 commit comments

Comments
 (0)