gesturedeck_flutter 1.2.1 copy "gesturedeck_flutter: ^1.2.1" to clipboard
gesturedeck_flutter: ^1.2.1 copied to clipboard

Gesturedeck empowers users to effortlessly control their devices through intuitive touch gestures, without even needing to look at the screen..

example/lib/main.dart

// ignore_for_file: avoid_print, unused_local_variable

import 'dart:io';

import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:gesturedeck_flutter_example/home.dart';

const primaryColor = Color(0xFFF5977F);

void main() {
  runApp(
    MaterialApp(
      debugShowCheckedModeBanner: false,
      theme: ThemeData.light().copyWith(
        brightness: Brightness.light,
        primaryColor: primaryColor,
        appBarTheme: AppBarTheme(
          backgroundColor: primaryColor,
          surfaceTintColor: Platform.isIOS ? Colors.transparent : null,
          shadowColor:
              Platform.isIOS ? CupertinoColors.darkBackgroundGray : null,
          scrolledUnderElevation: Platform.isIOS ? .1 : null,
        ),
        colorScheme: const ColorScheme.light(primary: primaryColor),
        useMaterial3: true,
      ),
      home: const Home(),
    ),
  );
}
4
likes
150
points
39
downloads

Publisher

verified publishernavideck.com

Weekly Downloads

Gesturedeck empowers users to effortlessly control their devices through intuitive touch gestures, without even needing to look at the screen..

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on gesturedeck_flutter