ios_colors 0.0.23 copy "ios_colors: ^0.0.23" to clipboard
ios_colors: ^0.0.23 copied to clipboard

A Flutter package providing Apple's iOS system colors as hex values. Useful for developers who want to match the native iOS color scheme.

🌈 IosColors #

IosColors is a sleek and modern Flutter package that brings the elegance of iOS system colors to your applications. Whether you're designing a seamless iOS experience or just love Apple's aesthetic, this package ensures your app looks and feels native.

✨ Features #

✅ A rich palette of official iOS system colors 🌟
✅ Supports light, dark, and custom shades 🎨
✅ Helps maintain a polished and consistent UI experience 🔥
✅ Easily accessible as static color constants 🏆

🚀 Getting Started #

To integrate IosColors into your project, simply add the file and import it:

import 'package:ios_colors/ios_colors.dart';

🎯 Usage #

Effortlessly access predefined iOS colors:

import 'package:flutter/material.dart';
import 'package:ios_colors/ios_colors.dart';

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        backgroundColor: IosColors.systemBackground,
        appBar: AppBar(
          title: Text('IosColors Example'),
          backgroundColor: IosColors.systemBlue,
        ),
        body: Center(
          child: Text(
            'Hello, iOS Colors!',
            style: TextStyle(color: IosColors.label),
          ),
        ),
      ),
    );
  }
}

📌 Additional Information #

💡 Want to contribute? Check out our repository for more details. Contributions, feedback, and suggestions are always welcome! 🎉

1
likes
130
points
45
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter package providing Apple's iOS system colors as hex values. Useful for developers who want to match the native iOS color scheme.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on ios_colors