Default Widget

The @gluestack-ui-flutter package comes with a pre-configured default theme, which can be integrated with the GluestackProvider as demonstrated below.

Usage

import 'package:gluestack_ui/gluestack_ui.dart';
void main() {
runApp(
GluestackProvider(
child: GSApp.router(
{/* Your app code */}
// ....
),
),
);
}
You can view default theme config here. To see all the widgets with the default theme, please visit All Widgets section.
Edit this page on GitHub