If you are starting with Flutter, just like me, and end up having used dependency packages with versions which do not support null safety checks then you are most likely to come across with errors such as the following when you do build. error GBA2BE6E0: A library can't opt out of null safety by default, … Continue reading Migrating to null safety in Flutter/Dart
Category: Dart
Process Stream data from gRPC Server using Flutter/Dart
In the earlier post, we addressed how to create a simple Grpc server in C# and consume it using a client developed using Flutter/Dart. We will now take the next step and address how to create expose a streaming remote method in the server and consume the same in the client. Streaming method in Server (C#) … Continue reading Process Stream data from gRPC Server using Flutter/Dart
Create a Flutter gRPC client
In this post, we will address how to create a gRPC client in Flutter and connect to a Server. In order to test our client application, we will quickly build a gRPC service using .Net. gRPC Server (C# .Net) Let us use the Asp.Net core gRPC Service template provided by Visual Studio. With the basic … Continue reading Create a Flutter gRPC client