mirror of
https://github.com/appwrite/appwrite
synced 2026-05-23 00:49:02 +00:00
33 lines
852 B
Markdown
33 lines
852 B
Markdown
|
|
import 'package:appwrite/appwrite.dart';
|
||
|
|
|
||
|
|
void main() { // Init SDK
|
||
|
|
Client client = Client();
|
||
|
|
Avatars avatars = Avatars(client);
|
||
|
|
|
||
|
|
client
|
||
|
|
.setEndpoint('https://[HOSTNAME_OR_IP]/v1') // Your API Endpoint
|
||
|
|
.setProject('5df5acd0d48c2') // Your project ID
|
||
|
|
;
|
||
|
|
// downloading file
|
||
|
|
Future result = avatars.getInitials(
|
||
|
|
).then((bytes) {
|
||
|
|
final file = File('path_to_file/filename.ext');
|
||
|
|
file.writeAsBytesSync(bytes)
|
||
|
|
}).catchError((error) {
|
||
|
|
print(error.response);
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|
||
|
|
//displaying image preview
|
||
|
|
FutureBuilder(
|
||
|
|
future: avatars.getInitials(
|
||
|
|
), //works for both public file and private file, for private files you need to be logged in
|
||
|
|
builder: (context, snapshot) {
|
||
|
|
return snapshot.hasData && snapshot.data != null
|
||
|
|
? Image.memory(
|
||
|
|
snapshot.data,
|
||
|
|
)
|
||
|
|
: CircularProgressIndicator();
|
||
|
|
},
|
||
|
|
);
|