Pascal Welsch

Results 69 issues of Pascal Welsch

fixes the broken up navigation

[ktadrt 0.6.0 release notes](https://github.com/passsy/kt.dart/releases/tag/v0.6.0) - `.list` is now deprecated and replaced by `.asList()` - `actor_reducer` has been changed to be more readable. Tests proof it's still working as expected :)

something like a circle or/and a custom drawable. any ideas or wishes?

enhancement

Some methods have been introduced later. Right now lint doesn't warn for such calls. It warns for `AppCompatActivity` but not for `CompositeActivity`. I.e. `Activity#isDestroyedI()` The `@RequiresApi` annotation could be added...

Part II of #23 Use reflection to check for overridden methods. Don't call plugins which did not override a method. Since reflection is very heavy it will be only used...

Enables `unawaited_futures`. Where Futures are intentionally not awaited, users can disable this lint with `fireAndForget` which exists as top-level function and extension. It is identical to [`unawaited`](https://github.com/google/pedantic/blob/master/lib/pedantic.dart) from pedantic. ```dart...

`cancel_subscriptions` is disabled in pedantic because it has false positives when you use a utility method or class to call `cancel`. A similar lint rule `close_sinks` is also disabled following...

https://www.designcise.com/web/tutorial/whats-the-difference-between-php-datetime-atom-and-datetime-iso8601 Basically ISO-8601 but with colons separating the time zone hh and mm

Hacktoberfest
type:datetime

https://en.wikipedia.org/wiki/Unix_time Time in seconds since 1-1-1970 0:00 ``` pick(1000000000).asDateTimeOrThrow(); // 2001-09-09T01:46:40Z ``` This is a direct conflict with `millisecondsSinceEpoch`.

Hacktoberfest
type:datetime