A Material Component for Ulas Kelas Project Ristek Universitas Indonesia
PrimaryButton(
/// If you want to change the content of this button just unset [text]
/// argument
///
/// change with
/// child: SomeWidget()
text: 'Hello',
// If you want disabled this button just unset [onPressed] argument
onPressed: () {},
/// Try other argument like [isLoading]
)
SecondaryButton(
/// If you want to change the content of this button just unset [text]
/// argument
///
/// change with
/// child: SomeWidget()
text: 'Hello',
// If you want disabled this button just unset [onPressed] argument
onPressed: () {},
/// Try other argument like [isLoading]
)