ffr_container 0.0.1 copy "ffr_container: ^0.0.1" to clipboard
ffr_container: ^0.0.1 copied to clipboard

outdated

A custom container designet to only show if flutter is uses in web version with customizing options by the ffr-devteam

ffr_container #

Password Input Field Package created with flutter.

The source code is 100% Dart and Flutter, and all necessary files are located in the /lib folder

Installation #

In the dependencies: section of your pubspec.yaml, add the following line:

ffr_container: <latest_version>

Import in your project:

import 'package:ffr_container/ffr_container.dart';

Basic Ussage #

class MyHomePage extends StatefulWidget {
  MyHomePage({Key key, this.title}) : super(key: key);
  final String title;

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

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      backgroundColor: Colors.lightBlue,
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: SafeArea(
        child: Center(child: FFRContainer(child: Text('I am a test'), color: Colors.red)),
      ),
    );
  }
}
0
likes
40
pub points
0%
popularity

Publisher

unverified uploader

A custom container designet to only show if flutter is uses in web version with customizing options by the ffr-devteam

Homepage
Repository (GitHub)
View/report issues

License

BSD-3-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on ffr_container