Flutter CrossAxisAlignment 在中心完成

标签 flutter flutter-layout

我尝试将我的 3 个蓝色 FloatingActionButton 居中,但是这 3 个按钮在屏幕的垂直中心并不完整。

https://photos.google.com/share/AF1QipOCmIVAJFI0e0gl_-hbeaIBZm1TDI4VmhIoGmI5Pofwzeg4pjqiZPKYQgrNQLV7hw/photo/AF1QipO4Rv792kN7fb7LEa6kANaUYp9f94LMwB-PfHyi?key=dlVFRjVabEZJTnpXNXZnc2VCdEY4SFQwc00tQzZR

如您所见,我包括: crossAxisAlignment:CrossAxisAlignment.center,

import 'package:flutter/material.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        // This is the theme of your application.
        //
        // Try running your application with "flutter run". You'll see the
        // application has a blue toolbar. Then, without quitting the app, try
        // changing the primarySwatch below to Colors.green and then invoke
        // "hot reload" (press "r" in the console where you ran "flutter run",
        // or simply save your changes to "hot reload" in a Flutter IDE).
        // Notice that the counter didn't reset back to zero; the application
        // is not restarted.
        primarySwatch: Colors.blue,
      ),
      home: MyHomePage(title: 'Counter'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  MyHomePage({Key key, this.title}) : super(key: key);

  // This widget is the home page of your application. It is stateful, meaning
  // that it has a State object (defined below) that contains fields that affect
  // how it looks.

  // This class is the configuration for the state. It holds the values (in this
  // case the title) provided by the parent (in this case the App widget) and
  // used by the build method of the State. Fields in a Widget subclass are
  // always marked "final".

  final String title;

  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  int _counter = 0;

  void _incrementCounter() {
    setState(() {
      // This call to setState tells the Flutter framework that something has
      // changed in this State, which causes it to rerun the build method below
      // so that the display can reflect the updated values. If we changed
      // _counter without calling setState(), then the build method would not be
      // called again, and so nothing would appear to happen.
      _counter++;
    });
  }
  void _decrementCounter() {
    setState(() {
      // This call to setState tells the Flutter framework that something has
      // changed in this State, which causes it to rerun the build method below
      // so that the display can reflect the updated values. If we changed
      // _counter without calling setState(), then the build method would not be
      // called again, and so nothing would appear to happen.
      _counter--;
    });
  }
  void _resetCounter() {
    setState(() {
      // This call to setState tells the Flutter framework that something has
      // changed in this State, which causes it to rerun the build method below
      // so that the display can reflect the updated values. If we changed
      // _counter without calling setState(), then the build method would not be
      // called again, and so nothing would appear to happen.
      _counter=0;
    });
  }

  @override
  Widget build(BuildContext context) {
    // This method is rerun every time setState is called, for instance as done
    // by the _incrementCounter method above.
    //
    // The Flutter framework has been optimized to make rerunning build methods
    // fast, so that you can just rebuild anything that needs updating rather
    // than having to individually change instances of widgets.
    return Scaffold(
      appBar: AppBar(
        // Here we take the value from the MyHomePage object that was created by
        // the App.build method, and use it to set our appbar title.
        title: Text(widget.title),
        actions: <Widget>[
          IconButton(
            icon: Icon(Icons.add),
            onPressed: _incrementCounter,
          ),
          IconButton(
            icon: Icon(Icons.refresh),
            onPressed: _resetCounter,
          ),
          IconButton(
            icon: Icon(Icons.remove),
            onPressed: _decrementCounter,
          ),



        ],
      ),
      body: Center(
        // Center is a layout widget. It takes a single child and positions it
        // in the middle of the parent.
        child: Column(
          // Column is also layout widget. It takes a list of children and
          // arranges them vertically. By default, it sizes itself to fit its
          // children horizontally, and tries to be as tall as its parent.
          //
          // Invoke "debug painting" (press "p" in the console, choose the
          // "Toggle Debug Paint" action from the Flutter Inspector in Android
          // Studio, or the "Toggle Debug Paint" command in Visual Studio Code)
          // to see the wireframe for each widget.
          //
          // Column has various properties to control how it sizes itself and
          // how it positions its children. Here we use mainAxisAlignment to
          // center the children vertically; the main axis here is the vertical
          // axis because Columns are vertical (the cross axis would be
          // horizontal).
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[

            Text(
              '$_counter',
              style: (Theme.of(context).textTheme.display1),
            ),
            Text(
              'push the buttons',
            ),
          ],
        ),
      ),
        floatingActionButton:Column(
          crossAxisAlignment: CrossAxisAlignment.center,
          mainAxisAlignment: MainAxisAlignment.end,
          children: <Widget>[
            FloatingActionButton(

              child: Icon(Icons.add,color: Colors.white,),
              onPressed: _incrementCounter,
            ),
            Container(height: 8),
            FloatingActionButton.extended(
              icon: Icon(Icons.refresh),
              label: Text('Reset'),
              onPressed: _resetCounter,
            ),
            Container(height: 8),
            FloatingActionButton(
              child: Icon(Icons.remove),
              tooltip: 'Increment',
              onPressed: _decrementCounter,
            ),
          ],
        )
      // This trailing comma makes auto-formatting nicer for build methods.
    );
  }
}

如何在 FloatingActionButton 的中心显示完整的 View ?

提前致谢!

最佳答案

父脚手架控制 float 操作按钮小部件在屏幕上的位置,而不是小部件本身。

从列中删除 CrossAxisAlignment.center 并在脚手架上试试这个。

Scaffold(
  ...
  floatingActionButtonLocation: FloatingActionButtonLocation.centerFloat,
)

关于Flutter CrossAxisAlignment 在中心完成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54381241/

相关文章:

listview - 如何为选定的 ListItem onTap 着色

flutter - Dio - QueuedInterceptor 处理具有多个请求的刷新 token

flutter - 强制子类实现抽象重写方法

flutter - flutter :凸起的按钮宽度问题

dart - Flutter 中的可折叠列表小部件有哪些选项?

flutter 换行文本而不是溢出

android - 无法在 flutter 中添加对android项目的依赖项

android - MissingPluginException(在 Android 上未找到 channel plugins.flutter.io/firebase_core 上的 Firebase#initializeCore 方法的实现)

flutter - 如何从 DrawerHeader 中删除填充

flutter - 如何在Flutter中将2行文本与1行文本对齐