2020-12-25 07:50:57 +00:00
|
|
|
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
|
|
|
|
|
;
|
2021-03-03 09:08:05 +00:00
|
|
|
}
|
2020-12-25 07:50:57 +00:00
|
|
|
|
2021-03-03 09:08:05 +00:00
|
|
|
//displaying image
|
|
|
|
|
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.data,
|
|
|
|
|
)
|
|
|
|
|
: CircularProgressIndicator();
|
|
|
|
|
},
|
|
|
|
|
);
|