Skip to content

Releases: Playhi/list_tile_more_customizable

3.0.0

26 Mar 12:49
Compare
Choose a tag to compare

[3.0.0] - 2022-03-26

  • Since all other functions have been merged in ListTile, now this package is only used to get TapDownDetails.
  • In this version, instead of rewriting ListTile, we use a Listener to record the PointerDownEvent for onTap and onLongPress to reach the target to get the details similar to TapDownDetails.
  • Migrate from an older version. First, we should migrate from TapDownDetails to PointerDownEvent, for example, from details.globalPosition.dx to details.position.dx. Secondly, we need to change ListTileMoreCustomizable... (except ListTileMoreCustomizable) into ListTile..., such as ListTileMoreCustomizableTheme, ListTileMoreCustomizableStyle, etc. In most cases, just delete the MoreCustomizable, and then the code will work fine.

2.0.1

16 Aug 09:32
581110c
Compare
Choose a tag to compare

[2.0.1] - 2021-08-16

  • Fix lib/list_tile_more_customizable.dart is not formatted according to dartfmt.

[2.0.0] - 2021-08-16

  • Opts into null safety. (#3)
  • With the efforts of the List Tile More Customizable Authors and the flutter community, now we can directly modify the horizontalTitleGap, minVerticalPadding and minLeadingWidth in the ListTile, so if you only use these three functions, it is time to switch back to use the ListTile.

1.3.0

11 May 09:06
Compare
Choose a tag to compare

[1.3.0] - 2020-05-09

  • As Flutter 1.17 stable has been released,
    we migrate the old textTheme term to the modern term.
    If you use an old version of flutter,
    we suggest you to upgrade your flutter.
    If you cannot use flutter which version is greater than 1.13.8 now,
    version 1.2.2 of list_tile_more_customizable
    can be used, and please don't upgrade the version
    of list_tile_more_customizable to 1.3.0
    and newer.
  • Sync Flutter change #213027d.
  • Sync Flutter change #2dc71a3.

1.2.2

22 Mar 10:58
Compare
Choose a tag to compare

[1.2.2] - 2020-03-22

  • Fixed hot reload perform abnormally problem when change minVerticalPadding or minLeadingWidth.

1.2.1

11 Mar 12:01
Compare
Choose a tag to compare

[1.2.1] - 2020-03-11

  • Export default value of contentPadding.

1.2.0

11 Mar 10:24
Compare
Choose a tag to compare

[1.2.0] - 2020-03-11

  • Export default value of horizontalTitleGap, minVerticalPadding and minLeadingWidth.

1.1.0

10 Mar 07:02
Compare
Choose a tag to compare

[1.1.0] - 2020-03-10

  • MinVerticalPadding and MinLeadingWidth becomes customizable.

1.0.1

02 Mar 02:56
Compare
Choose a tag to compare

[1.0.1] - 2020-03-02

  • Fixed hot reload perform abnormally when change horizontalTitleGap problem.

1.0.0

01 Mar 12:11
Compare
Choose a tag to compare

[1.0.0] - 2020-03-01

  • Add TapDownDetails to onLongPress.
  • Fixed null problem when onTap/onLongPress not used.

[0.1.0] - 2020-03-01

  • Support flutter 1.13.8-.

[0.0.1] - 2020-03-01

  • This project is a modified version of Flutter ListTile,
    which provides more customizable functions,
    with these functions,
    you can set the horizontalTitleGap
    and get the TapDownDetails when onTap occurred.