Benevides
Benevides
@elduderino87 lock the version of datepicker in your package json to `"bootstrap-datepicker": "^1.7.0-RC1" ` And this will work.
@Hadii1 I can confirm, it doesn't work on ios, works on android.
These 3 flags do do the job for me ``` hideOnError: true, hideOnEmpty: true, keepSuggestionsOnLoading: false, ``` The only problem for me is that i want to close de suggestionBox...
Hi @GotJimmy thanks for your amazing library, using Color transparent on content is useful on cases where we don't have solid color as background. Ex: Images or gradients.
+1 waiting for this feature, i need so much.
@christianacca I'm having the same issue with custom header, used your example and my template is rendered, but sort function is not working, already tried `ng-click="$ctrl.sortBy($column, $event)"`, `ng-click="sortBy($column, $event)"` or...
We're having the same issue and it's blocking us for using flutter (modules, plugins and libs) in our company.
Hi @jacobaraujo7 even if we specify the generic type the issue still persist. The same problem occurs with exported bindings.
@jacobaraujo7 the usecase with exported bindings ``` import 'package:flutter_modular/flutter_modular.dart'; import 'package:flutter/material.dart'; import 'package:flutter_test/flutter_test.dart'; abstract class IGetCurrentUserUseCase { T call(); } class GetCurrentUserUseCase implements IGetCurrentUserUseCase { final IAuthService _authService; GetCurrentUserUseCase(this._authService); @override...
@jacobaraujo7 with generics indeed worked and now we're stuck with the exportedBindings issue.