Installing Syncfusion® Flutter Linux installer
18 Nov 20181 minute to read
Prerequisites
- You must have a Syncfusion account. If you do not have one, sign up at Syncfusion Account.
- You must have already downloaded the Syncfusion® Flutter Linux installer (ZIP) from the Linux installer download page.
- Flutter SDK 3.0 or later must be installed on the development machine.
Step-by-Step Installation
The steps below show how to install the Flutter Linux installer.
-
Extract the Syncfusion® Flutter Linux installer (
.zip) file. The files are extracted to your machine.
-
The Linux ZIP file contains the following folders:
-
samples– Sample applications demonstrating Syncfusion® Flutter widgets. -
packages– Syncfusion® Flutter packages required to run the samples.

An unlock key is not required to install the Linux installer.
-
-
Open a terminal and navigate to the extracted
samplesfolder:cd <extracted_path>/samples -
Install the sample dependencies and run the demo:
flutter pub get flutter run
License key registration in samples
After installation, the license key is required to register the demo source that is included in the Linux installer. To learn about the steps for license registration for the Flutter Linux installer, refer to the licensing overview.
Register the license key in the main method of your application by importing the license package and calling SyncfusionLicenseProvider.registerLicense:
import 'package:syncfusion_flutter_core/core.dart';
void main() {
SyncfusionLicenseProvider.registerLicense('YOUR_LICENSE_KEY');
runApp(const MyApp());
}If you are using Syncfusion® controls prior to version 18.3.0.x, refer to the legacy licensing guide for older registration steps.