V1.0.0 development in progress. Contributions welcome. Learn how you can contribute to the project: resources.collabo.community
Mary @Ifycode 💻 |
Olatunji Sodiq Oyebisi 💻 |
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.
- GitHub issues submission
- Customizable UI components
- GitHub issue template support
- Real-time template loading
- Environment-based configuration
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
- 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
- Add .env to your pubspec.yaml:
flutter:
assets:
- .env
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(),
);
}
}
View the flutter app in the example(collabocate_flutter_test_app)
directory.