Mayur Dhurpate

Results 11 comments of Mayur Dhurpate

Hi, We were facing the exact same issue as @yanivshaked and the dimension check with `LayoutBuilder` in main function seems to fix this for us. Thanks for suggesting this @ryanheise!...

I've added this in our `main.dart`: ```dart void main() async { // ...some initialization code await runZonedGuarded(() async { runApp( LayoutBuilder(builder: (context, constraints) { if (constraints.maxHeight == 0.0 && constraints.maxWidth...

This would be very useful if we could somehow simulate Network and other exceptions to better structure the tests. I'm not sure whether considering the package is a `fake` and...

Yes, currently we use `cloud_firestore_mocks` for actual implementation test and use Mockito for testing exceptions. Having same scenario in both packages would help test better. Few common areas I could...

Would love to have this feature soon. Cannot think of any other easy way to swap out databases in AppSmith while keeping the application. Some ways in which it helps...

Hi team, hitting this roadblock when trying to use Hasura data provider. Hasura makes it easy to wire up a Postgres DB and is an excellent combination with Refine.

Or, will it be easier to setup Docker Compose for using [Certbot](https://certbot.eff.org/docs/install.html#running-with-docker)?

Check #30 where I tried connecting certbot container for easing certificate generation process.

@chsasank Have now a fully working PR #30 which configures certbot container in docker-compose and `make gen-https-cert`command which generates LetsEncrypt certificates and configures Nginx to use them.

@ashish9433 I'm facing this issue as well. Wanted to check if it's happening because of HTTPS certificate, or was happening earlier with Docker Compose as well. @yash-me Can you share...