Fernando de Oliveira Santos

Results 18 issues of Fernando de Oliveira Santos

Hi! My Swiper list (EventsList) has 2 items, but 3 items appear in the widget tree. ![image](https://user-images.githubusercontent.com/20338690/95667980-d178c780-0b43-11eb-9042-724ddf6964db.png) And as I'm using the Hero widget, I'm getting the following error ![image](https://user-images.githubusercontent.com/20338690/95667994-fc631b80-0b43-11eb-80e4-db6cf8326dc6.png)...

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** ![image](https://user-images.githubusercontent.com/20338690/90175712-34d1bd80-dd7e-11ea-97ae-8f75cd6fb846.png)

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...

documentation
question

![image](https://user-images.githubusercontent.com/20338690/140816186-96c7b06a-82d2-45f2-90d7-1a8d43a3d6ca.png) 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...