snapkit_flutter_android 2.1.1 copy "snapkit_flutter_android: ^2.1.1" to clipboard
snapkit_flutter_android: ^2.1.1 copied to clipboard

PlatformAndroid

An implementation for the Android platform of the Flutter `snapkit_flutter` plugin.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'const.dart';
import 'creative_kit_screen.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
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        body: const CreativeKitScreen(),
        bottomNavigationBar: BottomNavigationBar(
          items: const <BottomNavigationBarItem>[
            BottomNavigationBarItem(
              icon: Icon(Icons.create),
              label: 'Creative Kit',
            ),
            BottomNavigationBarItem(
              icon: Icon(Icons.login),
              label: 'Login Kit',
            ),
          ],
        ),
      ),
    );
  }
}
0
likes
160
pub points
31%
popularity

Publisher

unverified uploader

An implementation for the Android platform of the Flutter `snapkit_flutter` plugin.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, snapkit_flutter_platform_interface

More

Packages that depend on snapkit_flutter_android