arrow_back history picture_as_pdf This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ~~NOTRANS~~ ~~Title: Theme customizing~~ We support full customization of application theme. Simply set themeBuilder in your main: <code dart> void main() async { await FlutterUI.start( FlutterUI( ..., themeBuilder: (themeData, seedColor, brightness, useFixedPrimary) { ThemeData theme = themeData.copyWith( appBarTheme: AppBarTheme(backgroundColor: themeData.colorScheme.surface), elevatedButtonTheme: ElevatedButtonThemeData( style: ElevatedButton.styleFrom( shape: const RoundedRectangleBorder(borderRadius: BorderRadius.all(Radius.circular(25))) ) ) ); return theme; }, ), ); } </code> In this example, we set buttons rounded.