About 50 results
Open links in new tab
  1. flutter - Use onTap () or onPressed () with FlutterIcons on a Bottom ...

    Aug 24, 2022 · The difference between onTap () and onPressed is the moment of execution. As you can imagine onPressed () fires as soon as user touches the item without necessarily removing the finger …

  2. Flutter onPressed () vs onTap () - Stack Overflow

    Aug 16, 2019 · 6 The Source of differents between onTap and onPressed is GestureDetector used in buttons. onTap should give you response in the first moment touching the screen. onPressed should …

  3. How to navigate to a different screen with onTap in flutter

    Apr 25, 2021 · I am trying to navigate the user to a different screen when the user taps on a button in the alert dialogue, so i wrapped the container with inkwell and then used onTap () and navigator push …

  4. RESOLVED : All final variables must be initialized, but 'onTap' isn't ...

    Mar 18, 2024 · All final variables must be initialized, but 'onTap' isn't. Try adding an initializer for the field. const Loginpage ( {super.key, required void onTap}); const RegisterPage ( {super.key, required …

  5. onTap() function in Flutter Navigation Drawer? - Stack Overflow

    Aug 26, 2022 · I want to create basic drawer navigation and implement the onTap function on item click DrawerHeader( decoration: BoxDecoration( color: Colors.blue, ), ...

  6. dart - GestureDetector onTap Card - Stack Overflow

    Jun 3, 2018 · GestureDetector onTap Card Asked 7 years, 8 months ago Modified 2 years, 8 months ago Viewed 33k times

  7. Flutter GestureDetector, how to implement onTap Function?

    Mar 29, 2022 · I want to implement the OnTap in the Gesture Detector, i just cant figure out how... Originally i had the OnTap in the Inkwell, but it didnt work, since it didnt "entered" to that function …

  8. dart - Show fullscreen image onTap in Flutter - Stack Overflow

    Jan 5, 2019 · I have image shown using one of Flutter widgets Image.network(....); I want to add functionality that after tapping on image I can present this image in fullscreen mode. How it can be …

  9. how to change properties of list tile from its onTap () function in ...

    Sep 17, 2020 · how to change properties of list tile from its onTap () function in flutter? Asked 5 years, 4 months ago Modified 5 years, 4 months ago Viewed 2k times

  10. Can I use onTap from ListTile to go to new screen?

    Jan 17, 2019 · I'm new to flutter and dart language and this is my first real project which basically have lots of screen, I was wondering if it possible to use onTap from ListTile to go to new screen? if not I …