Francesco Iapicca
Francesco Iapicca
@hardikweetech consider this approach (ideally [go_router](https://pub.dev/packages/go_router) should be in a widget, but somewhere in the logic and injected with something like [riverpod](https://pub.dev/packages/riverpod), so that `logic` and `ui` are as far...
> @iapicca @exaby73 you don't understand me here I just want that when the screen goes from splash screen to another screen the transition must have an animation which did...
I suspect the problem is that you are wrapping an `AppBar` directly in a `Column`; a `Column` inside a `PreferredSize` works just fine as an `AppBar` ```dart import 'package:flutter/material.dart'; void...
duplicate of https://github.com/flutter/flutter/issues/101479
Hi @WingCH I tested your code with the latest master logs ```bash [ +170 ms] Syncing files to device iPhone 8... [ +4 ms] Scanning asset files [ +4 ms]
Hi @WingCH I just tested the code above with both the latest stable and the latest master stable ```console [✓] Flutter (Channel stable, v1.17.2, on Mac OS X 10.15.4 19E287,...
@Irhn given that - [http/3 draft](https://tools.ietf.org/html/draft-ietf-quic-http-31) has been published last month - chrome is [deploying it](https://blog.chromium.org/2020/10/chrome-is-deploying-http3-and-ietf-quic.html) - on safari is even enabled by default ([source](https://en.wikipedia.org/wiki/HTTP/3)) What are the plans for...
@lrhn this [feature request](https://github.com/google/cronet.dart/issues/5) could help implementing the feature
@miquelbeltran thanks for looking up the PR @vbuberen besides the originally stated [reason](https://github.com/fluttercommunity/plus_plugins/issues/949), during the implementation I also noticed that in some platform `toMap` is "broken" more specifically `jsonEncode(info.toMap())` throws...
> mmhhh... I am more inclined now to make toJson() a new method rather than modifying the toMap(), that way this is not going to be a breaking change. >...