flutter_ds_bfi

Last updated:

0 purchases

flutter_ds_bfi Image
flutter_ds_bfi Images
Add to Cart

Description:

flutter ds bfi

flutter_ds_bfi #
Design System Package for BFI
Getting Started #
This project is a starting point for a Dart
package,
a library module containing code that can be shared easily across
multiple Flutter or Dart projects.
For help getting started with Flutter, view our
online documentation, which offers tutorials,
samples, guidance on mobile development, and a full API reference.
Example for DSText & FontFamily #

How to use ? #
Just add this syntax to used DSText
DSText(
data: 'Font Family - Poppins',
textStyle: TextStyle(
fontFamily: DSFont.Poppins,
color: Colors.black,
),
)
copied to clipboard
And this is the stlye
class DSTextStyle {
static const TextStyle defaultStyle = TextStyle(
fontSize: 14.0,
fontFamily: DSFont.Poppins,
color: Colors.black,
fontWeight: FontWeight.normal);

static const TextStyle regularStyle = TextStyle(
fontSize: 12.0,
fontFamily: DSFont.Poppins,
color: Colors.black,
fontWeight: FontWeight.normal);

static const TextStyle titleTextStyle = TextStyle(
fontSize: 21.0,
fontFamily: DSFont.Poppins,
color: Colors.black,
fontWeight: FontWeight.bold);
}
copied to clipboard
Example for DSColor #

How to use ? #
Just add this syntax to used DSColor
buildTileColor(
"Primary Color", DSColor.primaryBlue, Colors.white),
copied to clipboard
And this is list of Color
Class DSColor {
DSColor._();

static const Color primaryBlue = Color(0xFF04559f);
static const Color bgColor = Color(0xFFf7f8fa);
static const Color successGreen = Color(0xFF7ac143);
static const Color secondaryOrange = Color(0xFFd47c0a);
static const Color disableColor = Color(0xFFA9A9A9);
}
copied to clipboard
Example for DSButton #

How to use ? #
Just add this syntax to used DSButton. Example Active Button
DSFilledButton(
text: "Active Button",
fontSize: 16,
buttonState: DSButtonState.Active,
fontWeight: FontWeight.normal,
onTap: () {},
)
copied to clipboard
And this is list of Button State
enum DSButtonState { Active, Disable, Tapable, Ghost, GhostDisable }
copied to clipboard
Example for DSCard #

How to use ? #
Just add this syntax to used DSCard. Example Blue Card
DSCard(
angsuranPerBulan: Text(
'Rp. 500.000',
style: TextStyle(
fontSize: 14,
color: Colors.white,
fontWeight: FontWeight.bold,
),
),
jatuhTempo: Text('12 Desember 2020',
style: TextStyle(
fontSize: 14,
color: Colors.white,
fontWeight: FontWeight.bold)),
licensePlate: 'B1MO',
noKontrak: '054651064130',
bgCard: 'assets/imgs/card_blue.png',
icon: 'assets/imgs/mobil.png',
titleAngsuran: 'Tagihan Bulan Ini',
arrowUp: 'assets/imgs/arrow_up_white.png',
onTap: () {
print('tap tap tap');
},
)
copied to clipboard
Just add this syntax to used DSCard. Example Contact Us
DSCardContactUs(
image: 'assets/imgs/phone_call.png',
title: 'Telepon Kami',
subtitle: 'Senin - Jumat: 08.00-18.00 WIB',
subtitle2: 'Sabtu: 08.00 - 12.00 WIB')
copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.