Having trouble getting help?
Contact Support
Contact Support
Syncfusion® Licensing Overview
16 Jan 20251 minute to read
The License key registration is no longer required for Flutter from version 18.3.0.x. So, there is no need to generate or register Syncfusion® Flutter license keys in your Flutter projects.
The Flutter controls from Syncfusion® can be used without registering the license keys.
Note: If you are using Syncfusion® controls prior to version 18.3.0.x, please follow the following steps to register your license key.
How To Register In An Application
Register the license key in the main method of your example and import the ‘syncfusion_flutter_core/core.dart’ library.
// Refer the core package
import 'package:syncfusion_flutter_core/core.dart';
void main() {
// Register Syncfusion license
SyncfusionLicense.registerLicense("YOUR LICENSE KEY");
return runApp(MyApp());
}