flutterflow_widgets 0.0.53 flutterflow_widgets: ^0.0.53 copied to clipboard
Easy to use custom widget & action library for the FlutterFlow deveopers.
import 'package:exmaple/home.screen.dart';
import 'package:flutter/material.dart';
import 'package:flutter_localizations/flutter_localizations.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const HomeScreen(title: 'Flutter Widgets Demo'),
localizationsDelegates: const [
GlobalMaterialLocalizations.delegate,
GlobalWidgetsLocalizations.delegate,
GlobalCupertinoLocalizations.delegate,
],
supportedLocales: const [
Locale('en', 'US'),
Locale('ko', 'KR'),
Locale('ja', 'JP'),
Locale('zh', 'CN'),
],
);
}
}