flutter_pinned_projects 0.0.3 copy "flutter_pinned_projects: ^0.0.3" to clipboard
flutter_pinned_projects: ^0.0.3 copied to clipboard

A Flutter package to pin projects to the top of the list in the GitHub repository.

Flutter Pinned Projects #

Flutter Pinned Projects is a Flutter package designed to help you pin projects to the top of the list in a GitHub repository. This package simplifies the process of managing pinned repositories programmatically.

Features #

  • Pin projects to the top of a GitHub repository list.
  • Easy-to-use API for seamless integration.
  • Built with Flutter and Dart.

Installation #

Add the following to your pubspec.yaml file:

dependencies:
  flutter_pinned_projects: ^0.0.3

Then, run:

flutter pub get

Usage #

Import the package:

import 'package:flutter_pinned_projects/flutter_pinned_projects.dart';

Use the PinnedProjectsWidget to display pinned projects:

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

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

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(title: const Text('Pinned Projects')),
        body: const PinnedProjectsWidget(username:"username"),
      ),
    );
  }
}

License #

This project is licensed under the MIT License. See the LICENSE file for details.

Contributing #

Contributions are welcome! Please feel free to submit a pull request or open an issue.

Author #

Developed by Mehmet Fiskindal.

1
likes
135
points
46
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

A Flutter package to pin projects to the top of the list in the GitHub repository.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

flutter, http, url_launcher

More

Packages that depend on flutter_pinned_projects