Flutter-Neumorphic
Flutter-Neumorphic copied to clipboard
fix: replace deprecated `bodyText2` with `bodyMedium` (#287)
This update addresses compatibility issues with Flutter 3.0+ by replacing deprecated bodyText2 references in the TextTheme with bodyMedium.
Key Changes
- Updated all instances of
bodyText2in the codebase tobodyMediumas per the latest Flutter API. - Ensured compatibility with Flutter 3.0+ where
bodyText2is no longer supported.
Why this change is necessary
Flutter 3.0+ has deprecated and removed several TextTheme properties such as bodyText2, causing build failures in the flutter_neumorphic package. Updating to the newer bodyMedium resolves these issues and ensures the package remains functional for all users.
Fixes #287 .
please merge this