Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Flutter rounded profile image appBar

Tags:

flutter

dart

I'm currently new to Flutter and Dart language and I'm trying to set a profile image to my leading attribute of my appBar.

So far I've got my image to be rounded, but I can't make it smaller nor put a margin to the left side.

Here's a snippet of my code:

@override
  Widget build(BuildContext context) {
    return new MaterialApp(
      home: new Scaffold(
        backgroundColor: Colors.blueGrey,
        appBar: new AppBar(
          title: new Text("Activities"),
          leading: new Container(
            padding: new EdgeInsets.all(15.0),
            width: 10.0,
            height: 10.0,
            decoration: new BoxDecoration(
              color: const Color(0xff7c94b6),
              borderRadius: new BorderRadius.all(new Radius.circular(50.0)),
              border: new Border.all(
                color: Colors.white,
                width: 1.0,
              ),
            ),
          ),
          actions: <Widget>[
            new IconButton(
              icon: new Icon(Icons.refresh),
              onPressed: () {
                print("Reloading...");
                setState(() {
                  _isLoading = true;
                });
                _FetchData();
              },
            )
          ],
        ),

// ...

And here's how it looks: Click here

As you can see, my image is way too big and there's no margin to the left side...

How can I make the image smaller and most importantly, make a left margin similar to the refresh button right's margin?

Any help would be appreciated, Have a good one.

like image 890
Chomaunte Avatar asked May 05 '18 17:05

Chomaunte


People also ask

How do I make the AppBar rounded in flutter?

How do I make the AppBar rounded in flutter? Apply background color to AppBar. Create A SizedBox/Container of some height (say 240) right below AppBar in the body and apply the same background color. Use ClipPath Widget to wrap that SizedBox/Container.

How do I change the shape of AppBar in flutter?

You can change the shape of the app bar by setting shape property. shape property accept ShapeBorder widget. You can use RoundedRectangleBorder widget to set round rectangle corner widget. Also if you need more shape edge you can use BeveledRectangleBorder widget for that.

How do you insert an image in AppBar title flutter?

Use leading to set a widget before appBar title and use actions to specify list of widgets in appBar which appears on right side of appBar title. AppBar( leading: Image. asset('yourImage'), // you can put any Widget title: Text ("Title"), actions: [ Icon(Icons. shopping_cart), Icon(Icons.

Can we use drawer without AppBar in flutter?

You have your own custom Menu button to open/close drawer. You don't want to use AppBar as well. In that case you can use GlobalKey<ScaffoldState>() object to open Drawer.


1 Answers

Consider using Material combined with a shape: new CircleBorder() instead of manually creating a circle. Or a CircleAvatar if that fits your needs.

Then add a Padding to control the size and margin.

return new Scaffold(
  backgroundColor: Colors.blueGrey,
  appBar: new AppBar(
    title: new Text("Activities"),
    leading: new Padding(
      padding: const EdgeInsets.all(8.0),
      child: new Material(
        shape: new CircleBorder(),
      ),
    ),
  ),
);

enter image description here

like image 175
Rémi Rousselet Avatar answered Nov 19 '22 15:11

Rémi Rousselet