简体   繁体   English

如何将文本添加到我的 floatingActionButton?

[英]How do i add text to my floatingActionButton?

I am trying to add text to my floatingActionButton but I am unable to do so.我正在尝试向我的floatingActionButton添加文本,但我无法这样做。 How do I add the text to it not finding any way for it.如何将文本添加到它没有找到任何方法。

@override
Widget build(BuildContext context) {
  return Scaffold(
    floatingActionButton: FloatingActionButton(
      child: Icon(Icons.add),
      onPressed: () async {
        // when clicked on floating action button prompt to create user
        Navigator.pushReplacement(
          context,
          MaterialPageRoute(
            builder: (BuildContext context) => CreateUser(),
          ),
        );
      },
    ),
  );
}

You can use FloatingActionButton.extended to display Text and Icon in a FAB at once.您可以使用FloatingActionButton.extended一次在 FAB 中显示文本和图标。

FloatingActionButton.extended(
  onPressed: () {
    // when clicked on floating action button prompt to create user
    Navigator.pushReplacement(
      context,
      MaterialPageRoute(
        builder: (BuildContext context) => CreateUser(),
      ),
    );
  },
  label: Text('Label'),
  icon: Icon(Icons.add),
),

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM