backdrop 0.0.15 copy "backdrop: ^0.0.15" to clipboard
backdrop: ^0.0.15 copied to clipboard

outdated

Backdrop implementaion in dart. (https://material.io/design/components/backdrop.html)

example/lib/main.dart

import 'package:backdrop/backdrop.dart';
import 'package:flutter/material.dart';

void main() => runApp(new MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return new MaterialApp(
      title: 'Backdrop Demo',
      theme: new ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: new MyHomePage(),
    );
  }
}

class MyHomePage extends StatefulWidget {
  MyHomePage({Key key}) : super(key: key);

  @override
  _MyHomePageState createState() => new _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return BackdropScaffold(
      title: Text("Backdrop Example"),
      backpanel: Center(
        child: Text("Backpanel"),
      ),
      body: Center(
        child: Text("Body"),
      ),
    );
  }
}
532
likes
0
pub points
94%
popularity

Publisher

verified publisherfluttercommunity.dev

Backdrop implementaion in dart. (https://material.io/design/components/backdrop.html)

Repository (GitLab)
View/report issues

Documentation

Documentation

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on backdrop