Pedro Massango

Results 46 comments of Pedro Massango

Hi @lsarruda As stated above you should use the `style` parameter and provide a shape parameter. ```dart ElevatedButton( child: Text('Flutter'), onPressed: () {}, style: ElevatedButton.styleFrom( shape: RoundedRectangleBorder( side: BorderSide(color: Colors.red),...

Hi @Lsarruda Thanks for making the issue clear. This seems valid since currently there is no way to change the border of a specific side. Tried to find a workaround...

Hi @clarkap Can you please provide your `flutter doctor -v`, your `flutter run --verbose`? Thank you

For some reason I'm not able to create an emulator with Directional Pad on Android Studio 4.0. So this will need additional triage.

Hi @allanchao I cannot reproduce this issue on latest `beta` channel. Can you upgrade to `beta`and try again `flutter channel beta` `flutter upgrade --force` `flutter doctor -v`

Hi @allanchao Hmm, please try one more time with the `master` channel. Upgrade to `master` and try again please: `flutter channel master` `flutter upgrade --force` `flutter doctor -v`

Without additional information, we are unfortunately not sure how to resolve this issue. We are therefore reluctantly going to close this bug for now. Please don't hesitate to comment on...

I was able to reproduce the issue on latest mater and stable channel. code sample ```dart import 'package:flutter/material.dart'; void main() => runApp(MaterialApp(home: MyWidget()),); class MyWidget extends StatelessWidget { @override Widget...

Still reproducible on latest master channel. A work around for this issue is to set `crossAxisCount` to `2`. flutter doctor -v ``` [✓] Flutter (Channel master, 1.22.0-10.0.pre.221, on Mac OS...