flutter_yandex_navikit 1.0.0-beta
flutter_yandex_navikit: ^1.0.0-beta copied to clipboard
A Flutter package for Yandex Maps Navikit. Provides ready-to-use widgets and managers for map integration, navigation, guidance, and route planning — similar to the official Yandex Maps app.
example/main.dart
import 'package:flutter/material.dart';
import 'package:flutter_yandex_navikit/app.dart';
import 'package:flutter_yandex_navikit/core/resources/theme.dart';
void main() async {
WidgetsFlutterBinding.ensureInitialized();
runApp(
MaterialApp(
theme: NavikitFlutterTheme.lightTheme,
darkTheme: NavikitFlutterTheme.darkTheme,
themeMode: ThemeMode.system,
home: const NavikitFlutterApp(
mapApiKey: "c45d8fd7-8dac-47fc-a610-bf83eb6decf1",
),
),
);
}