flutter_git 0.0.9 copy "flutter_git: ^0.0.9" to clipboard
flutter_git: ^0.0.9 copied to clipboard

A new Flutter plugin.

example/lib/main.dart

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

import 'package:flutter/services.dart';
import 'package:flutter_git/flutter_git.dart';

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

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  
  List<String> strings = [];

  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(
          child: Text(strings.join('\n')),
        ),
        floatingActionButton: FloatingActionButton(
          child: Icon(Icons.directions_run),
          onPressed: () async {

          },
        ),
      ),
    );
  }
}
0
likes
100
pub points
37%
popularity

Publisher

unverified uploader

A new Flutter plugin.

Documentation

API reference

License

MIT (LICENSE)

Dependencies

ffi, flutter

More

Packages that depend on flutter_git