skip to Main Content

I need this ÷ sign in my app.

what is the name of the division ÷ sign in the icons section in Flutter Dart Material?

I tried this code but the sign does not exist.

IconButton(onPressed: _divideCounter, icon:Icon(Icons.division))

2

Answers


  1. If you want some special icons in your application. Just use these packages:

    icon: Icon(FontAwesomeIcons.divide),
    

    Here is the list of icons: fontawesome

    icon: AnimatedIcon(icon: AnimatedIcons.divide)
    

    Here is the list of icons: flutter-vector-icons

    Install these packages by run command in your project directory:

    flutter pub add <package_name>
    
    Login or Signup to reply.
  2. If you don’t want to use a third-party package you can do this:

    IconButton(
      onPressed: _divideCounter,
      icon: Text('÷', style: TextStyle(fontSize: 24.0))
    )
    

    Adjust the font size as needed.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search