skip to Main Content

how to mock Supabase with Flutter for unit testing?

I'm trying to do unit test with Supabase in Flutter like the code bellow: import 'package:bloc_test/bloc_test.dart'; import 'package:flutter_test/flutter_test.dart'; import 'package:mockito/mockito.dart'; import 'package:supabase_flutter/supabase_flutter.dart'; class TestMClass { SupabaseClient client; TestMClass({ required this.client, }); Future<AuthResponse> signinMc() async { final respnse = await client.auth…

VIEW QUESTION

unable load image asset in flutter

I am not sure why my images from assets is not working I looked at these two questions: -https://stackoverflow.com/questions/64158543/flutter-unable-to-load-image-asset -https://stackoverflow.com/questions/67552389/unable-to-load-image-asset this is how I am trying to fetch the image: Image( image: AssetImage('assets/logo.png'), width: 100, height: 100, ), here is…

VIEW QUESTION
Back To Top
Search