Created
March 14, 2025 08:43
-
-
Save lukas-h/1eef7f641c044933aa070b6c798db639 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter_bloc/flutter_bloc.dart'; | |
// Here we have the complex shopify logic that only works with the correct credentials | |
class MyService { | |
Future<bool> signIn(String email, String password) async { | |
// Contains complex API implementation stuff | |
await Future.delayed(const Duration(seconds: 2)); | |
return true; | |
} | |
} | |
// Here we have a fake implementation | |
class MyFakeService extends MyService { | |
@override | |
Future<bool> signIn(String email, String password) async { | |
// Our fake implementation | |
await Future.delayed(const Duration(seconds: 2)); | |
return false; | |
} | |
} | |
sealed class MyState {} | |
class MyInitial extends MyState {} | |
class MyLoading extends MyState {} | |
class MySuccess extends MyState {} | |
class MyCubit extends Cubit<MyState> { | |
final MyService service; | |
MyCubit(this.service) : super(MyInitial()); | |
Future<void> signIn(String email, String password) async { | |
emit(MyLoading()); | |
final result = await service.signIn(email, password); | |
if (result) { | |
emit(MySuccess()); | |
} else { | |
emit(MyInitial()); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment