flutter_instagram_api 1.0.0
flutter_instagram_api: ^1.0.0 copied to clipboard
A Flutter package for easy Instagram login using OAuth authentication. Fetch user data seamlessly with just a few lines of code.
example/lib/main.dart
import 'package:example/view/home_page.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return const MaterialApp(
home: HomePage(),
);
}
}