Last updated:
0 purchases
ffr container
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>
copied to clipboard
Import in your project:
import 'package:ffr_container/ffr_container.dart';
copied to clipboard
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)),
),
);
}
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.