timely_x 0.0.11 copy "timely_x: ^0.0.11" to clipboard
timely_x: ^0.0.11 copied to clipboard

Timely X, a calendar plugin for Flutter.

example/lib/main.dart

// ignore_for_file: public_member_api_docs, sort_constructors_first

import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:flutter/widgets.dart';
import 'package:timely_x_example/home_screen.dart';

import 'app_theme.dart';

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

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

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      theme: AppTheme.darkTheme(),
      debugShowCheckedModeBanner: false,
      home: const Scaffold(
        body: HomeScreen(),
      ),
    );
  }
}
1
likes
120
points
536
downloads

Publisher

unverified uploader

Weekly Downloads

Timely X, a calendar plugin for Flutter.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter, flutter_web_plugins, gradient_borders, intl, jiffy, plugin_platform_interface

More

Packages that depend on timely_x