orbit 0.0.15 copy "orbit: ^0.0.15" to clipboard
orbit: ^0.0.15 copied to clipboard

TLE and NORAD SGP4/SDP4/SGP8/SDP8 Implementation for Dart and Flutter.

example/lib/main.dart

import 'package:example/home_page.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Orbit',
      theme: ThemeData(
        colorSchemeSeed: Colors.purple,
        brightness: Brightness.dark,
        useMaterial3: true,
      ),
      home: const HomePage(),
    );
  }
}
2
likes
140
pub points
24%
popularity

Publisher

unverified uploader

TLE and NORAD SGP4/SDP4/SGP8/SDP8 Implementation for Dart and Flutter.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

latlng

More

Packages that depend on orbit