Fernando de Oliveira Santos
Fernando de Oliveira Santos
Hi! My Swiper list (EventsList) has 2 items, but 3 items appear in the widget tree.  And as I'm using the Hero widget, I'm getting the following error ...
This **example** code would never rebuild: ```dart class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( theme: ThemeData.dark().copyWith( scaffoldBackgroundColor: darkBlue, ), debugShowCheckedModeBanner: false, home: Scaffold( body: Center(...
I have the following routes ```dart router ..route("/graduates/auth/token").link(() => AuthController(authServer)) ..route("/graduates[/:username]") .link(() => Authorizer.bearer(authServer)) .link(() => GraduateController(context, authServer)); ``` The `GraduateController` handles both GET and POST operations. How can I...
I'm learning aqueduct. After running ` dart pub run aqueduct db generate` and `dart pub run aqueduct db upgrade --connect postgres://mobile:mobile@localhost:5432/ccd`, I get the the following output. What's wrong (and...
**Describe the bug** When using `leftBarIndicatorColor` property alongside `borderRadius`, the left side doesn't respect the `borderRadius ` property. Is it correct? If so, what about implementing an option to `forceBorderRadius`?...
**Describe the bug** There is a small typo in the bug report template. There is a space after the _Screenshots_ section, which doesn't make it bold by default. **Screenshots** 
I would like to make some contributions to this package, but I'm kind of lost. Where should I start? I think it would be nice to have a README on...
 In Android 9, when I execute the code below 5 times , in the 5th attempt, I won't be able to connect. That's because every time I make a...
Changes discussed at https://github.com/alternadom/WiFiFlutter/pull/201#issuecomment-991723926 I've made each change in a separate commit to make it easier to review.
Hi! If I have a table called Todos, Moor will generate a data class called Todo to represent my rows, but I already have a Todo data class that I've...