About 292,000 results
Open links in new tab
  1. DataTable | FlutterFlow Documentation

    The way sorting works in a DataTable is as follows: first, you mark the column to sort. Then, whenever a user clicks on a header, you receive an OnSortChanged callback with two …

  2. Sorting Column Values in Flutter DataTable - Stack Overflow

    May 2, 2020 · Passing sortColumnIndex only affects indicator arrows in the header row. Data rows aren't automatically sorted. You should sort the data manually and call setState then.

  3. How to implement custom sorting function for DataTable ... - FlutterFlow

    Aug 6, 2024 · I'm trying to follow the tutorial for column sorting in the DataTable documentation here: https://docs.flutterflow.io/resources/ui/components/built-in-components/datatable/ but I'm …

  4. Custom Widget Data Table with sortable column - community.flutterflow

    Jul 22, 2022 · int _currentSortColumn = 0; bool _isAscending = true; @override. Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: const Text('DataTable …

  5. Flutterflow Dynamic Sorting the Datatable - Medium

    Aug 26, 2024 · The datatable is a very useful widget. To my dismay, it doesn’t have automatic sorting, instead you have to manually sort the items using a custom function. Even when I …

  6. Flutterflow Dynamic Sorting the Datatable - FlutterFlow

    switch (sortColumIndex) { case 0: listToSort.sort((a, b) => a.name.compareTo(b.name)); break; case 1: listToSort.sort((a, b) => a.age.compareTo(b.age)); break; case 2: listToSort.sort((a, b) …

  7. Question on how to set an icon dynamically : r/FlutterFlow - Reddit

    You can try to create a custom widget that will have all available icons below each other in a column. Then, depending on the parameter you pass to the widget, you can use the condition …

  8. Custom Icons | FlutterFlow University - YouTube

    In this comprehensive video tutorial, we guide you through the process of setting up custom icons in your FlutterFlow design system. Custom icons are vector graphics that provide...

  9. Icons | FlutterFlow Documentation

    Additionally, you can set the Icon value by selecting from a vast catalog of Material Icons and FontAwesome Icons provided by FlutterFlow. You can also upload your own licensed Custom …

  10. FlutterFlow bug in DataTable sorting? Property Panel shows error ...

    Mar 11, 2024 · I tried this a few weeks ago and it worked, but already noticed that in the Property Panel (right-hand side of the screen) it showed and error on "Sorted Column Index" and "Is …