flutter_local_ai 0.0.1-dev.1
flutter_local_ai: ^0.0.1-dev.1 copied to clipboard
A Flutter package that wraps Android ML Kit GenAI and iOS Foundation Models APIs for local AI inference.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:flutter_local_ai/flutter_local_ai.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Local AI Example',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
home: const MyHomePage(title: 'Flutter Local AI Example'),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({super.key, required this.title});
final String title;
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
final _aiEngine = FlutterLocalAi();
final _promptController = TextEditingController();
String _response = '';
bool _isLoading = false;
bool _isAvailable = false;
@override
void initState() {
super.initState();
_checkAvailability();
}
Future<void> _checkAvailability() async {
final available = await _aiEngine.isAvailable();
setState(() {
_isAvailable = available;
});
}
Future<void> _generateText() async {
if (_promptController.text.isEmpty) {
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(content: Text('Please enter a prompt')),
);
return;
}
setState(() {
_isLoading = true;
_response = '';
});
try {
final response = await _aiEngine.generateText(
prompt: _promptController.text,
config: const GenerationConfig(maxTokens: 200),
);
setState(() {
_response = response.text;
_isLoading = false;
});
} catch (e) {
setState(() {
_response = 'Error: $e';
_isLoading = false;
});
}
}
@override
void dispose() {
_promptController.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
backgroundColor: Theme.of(context).colorScheme.inversePrimary,
title: Text(widget.title),
),
body: Padding(
padding: const EdgeInsets.all(16.0),
child: Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
children: [
Card(
child: Padding(
padding: const EdgeInsets.all(16.0),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Row(
children: [
Icon(
_isAvailable ? Icons.check_circle : Icons.error,
color: _isAvailable ? Colors.green : Colors.red,
),
const SizedBox(width: 8),
Text(
_isAvailable
? 'Local AI is available'
: 'Local AI is not available',
style: Theme.of(context).textTheme.titleMedium,
),
],
),
],
),
),
),
const SizedBox(height: 16),
TextField(
controller: _promptController,
decoration: const InputDecoration(
labelText: 'Enter your prompt',
border: OutlineInputBorder(),
hintText: 'Write a short story about a robot...',
),
maxLines: 3,
),
const SizedBox(height: 16),
ElevatedButton(
onPressed: _isLoading ? null : _generateText,
child: _isLoading
? const SizedBox(
height: 20,
width: 20,
child: CircularProgressIndicator(strokeWidth: 2),
)
: const Text('Generate Text'),
),
const SizedBox(height: 16),
if (_response.isNotEmpty)
Expanded(
child: Card(
child: Padding(
padding: const EdgeInsets.all(16.0),
child: SingleChildScrollView(
child: Text(
_response,
style: Theme.of(context).textTheme.bodyLarge,
),
),
),
),
),
],
),
),
);
}
}