Skip to content

0.2.0

Compare
Choose a tag to compare
@K9i-0 K9i-0 released this 21 May 08:53
· 140 commits to main since this release
0.2.0
0366350

Features

  • Added PagingHelperViewTheme: Introduced a new ThemeExtension to enable highly customizable styling for the PagingHelperView widget. Developers can now easily tailor the loading, error, and end-of-list views to match their application's design.
ThemeData(
  extensions: [
    PagingHelperViewTheme(
      loadingViewBuilder: (context) => CircularProgressIndicator(),
      // ... other customizations
    ),
  ],
  // ... rest of your theme
)