atsign-foundation / at_widgets

Flutter widgets which aid in building applications using Atsign's technology
https://docs.atsign.com
BSD 3-Clause "New" or "Revised" License
53 stars 32 forks source link

fix: replace deprecated elements with equivalent up-to-date items #849

Closed srieteja closed 4 months ago

srieteja commented 4 months ago

Closes https://github.com/atsign-foundation/at_widgets/issues/843

- What I did

- How I did it

  1. color: Theme.of(context).backgroundColor -> color: Theme.of(context).canvasColor

  2. style: Theme.of(context).textTheme.bodyText1 -> style: Theme.of(context).textTheme.bodyMedium,

- How to verify it

- Description for the changelog

fix: replace deprecated elements with equivalent up-to-date items

cpswan commented 4 months ago

@srieteja I've merged #850 as we don't need to have the beta tests passing (yet)

This one is also good to go once you've confirmed that the manual tests are OK.

srieteja commented 4 months ago

@cpswan this one's build has been failing since last night. Currently trying to get a clean build.

gkc commented 4 months ago

@cpswan this one's build has been failing since last night. Currently trying to get a clean build.

@srieteja which build are you referring to? Only the checks on the beta channel are failing on this PR

srieteja commented 4 months ago

@gkc I'm trying to build the code into an apk and run it in an emulator. To see the new changes are working just fine. This build has been failing for me.

srieteja commented 4 months ago

@cpswan this one has passed manual testing too. Thanks @CurtlyCritchlow for the help.