fluttercommunity / backdrop

Backdrop implementation in flutter.
https://pub.dev/packages/backdrop
MIT License
329 stars 37 forks source link

BackdropScaffold gif example update! #96

Closed sachin-dahal closed 3 years ago

sachin-dahal commented 3 years ago

An issue #95 was that the gif example was not matching to the example shown on the main documentation page by which confusion might occur to a few. Here is the comparison between the two example gifs which is now updated with the relevant one for the mentioned example code on the main documentation page

BackdropScaffold(
  appBar: BackdropAppBar(
    title: Text("Backdrop Example"),
    actions: <Widget>[
      BackdropToggleButton(
        icon: AnimatedIcons.list_view,
      )
    ],
  ),
  backLayer: Center(
    child: Text("Back Layer"),
  ),
  frontLayer: Center(
    child: Text("Front Layer"),
  ),
)

Before

BackdropScaffold example

After

BackdropScaffold
WieFel commented 3 years ago

LGTM @daadu ?

daadu commented 3 years ago

This has been pushed to pub.dev with v0.6.2.

@sachin-dahal Thanks for the contribution, check yourself in README!!