flutter_ug

Last updated:

0 purchases

flutter_ug Image
flutter_ug Images
Add to Cart

Description:

flutter ug

Features #
flutter_ug is a package that provides uyghur language support for flutter applications.
Getting started #
To use this package, add flutter_ug as a dependency in your pubspec.yaml file.
dependencies:
flutter_ug: ^0.0.2
copied to clipboard
Usage #
import 'package:flutter_ug/flutter_ug.dart';

void main() {
runApp(MaterialApp(
localizationsDelegates: [
GlobalMaterialLocalizations.delegate,
GlobalCupertinoLocalizations.delegate,
GlobalWidgetsLocalizations.delegate,
UgLocalizations.delegate,
UgLocalizations.cupertinoDelegate,
UgLocalizations.widgetsDelegate
],
supportedLocales: [
const Locale('ug'),
],
home: Scaffold(
appBar: AppBar(
title: "Hello World!"
),
body: Center(
CalendarDatePicker(
initialDate: DateTime.now(),
firstDate: DateTime(1900),
lastDate: DateTime(2100),
onDateChanged: (value) {},
)
),
),
));
}
copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.