Skip to content

collabo-community/collabocate_flutter

Repository files navigation

@collabo-community/collabocate (flutter)

V1.0.0 development in progress. Contributions welcome. Learn how you can contribute to the project: resources.collabo.community

Contributors

All Contributors contributions welcome License: AGPL v3.0

Mary @Ifycode
Mary @Ifycode

💻
Olatunji Sodiq Oyebisi
Olatunji Sodiq Oyebisi

💻

collabocate_Flutter(plugin)

A Flutter plugin that provides a customizable GitHub issue management interface. This plugin allows users to create GitHub issues using predefined templates with a clean, modern UI.

Features

  • GitHub issues submission
  • Customizable UI components
  • GitHub issue template support
  • Real-time template loading
  • Environment-based configuration

Getting started

Installation

To use this plugin, Add this to your package's pubspec.yaml file:

dependencies:
  collabocate_flutter:
    git:
      url: https://github.com/yourusername/collabocate_ui_plugin.git

Usage

Environment Setup

  1. Create a .env file in your project root and add:
BACKEND_URL=your_backend_url_here

get idea from .env.example in the example folder

  1. Add .env to your pubspec.yaml:
flutter:
 assets:
   - .env

Basic usage

import 'package:collabocate_flutter/collabocate.dart';
import 'package:flutter/material.dart';

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

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

  @override
  State<HomeScreen> createState() => _HomeScreenState();
}

class _HomeScreenState extends State<HomeScreen> {

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: CollabocateFlutter(),
    );
  }
}

Example

View the flutter app in the example(collabocate_flutter_test_app) directory.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages