Rabia-Abismail

Results 7 comments of Rabia-Abismail

Wrapping **ListView** widget inside **_DropDown** widget into **MediaQuery.removePadding** fixes the issue ```dart Flexible( child: MediaQuery.removePadding( context: context, removeTop: true, removeBottom: true, removeLeft: true, removeRight: true, child: ListView.separated( separatorBuilder: (_, __)...

Wrapping **ListView** widget inside **_DropDown** widget into **MediaQuery.removePadding** fixes the issue ```dart Flexible( child: MediaQuery.removePadding( context: context, removeTop: true, removeBottom: true, removeLeft: true, removeRight: true, child: ListView.separated( separatorBuilder: (_, __)...

Wrapping **ListView** widget inside **_DropDown** widget into **MediaQuery.removePadding** fixes the issue ```dart Flexible( child: MediaQuery.removePadding( context: context, removeTop: true, removeBottom: true, removeLeft: true, removeRight: true, child: ListView.separated( separatorBuilder: (_, __)...

I've tried the latest version, but the issue still persists Using: - retrofit: 4.8.0 - retrofit_generator: 10.1.1 @trevorwang could you please check this again? the above example is enough to...

I can confitm that it's working using latest commit `5420aaee400f03f67b450a8856a2ef2e42f829b8` current generated output is something like this: (which is correct) ```dart _value = _result.data!.cast(); ``` using this specific commit no...

@trevorwang I've tried the latest version on pub.dev `retrofit: 4.9.0` `retrofit_generator: 10.1.3` But the issue still persists I think you need to publish your latest changes to pub.dev

@trevorwang Still the same issue, nothing has changed. `retrofit: 4.9.0` `retrofit_generator: 10.1.3` Have you tested the example I mentioned in the original question? ```dart @RestApi() abstract class ApiClient { @POST("/api/submit")...