flutter_instagram_api 1.0.3
flutter_instagram_api: ^1.0.3 copied to clipboard
A Flutter package for easy Instagram login using OAuth authentication. Fetch user data seamlessly with just a few lines of code.
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(),
);
}
}