cloudinary_flutter 0.0.4 copy "cloudinary_flutter: ^0.0.4" to clipboard
cloudinary_flutter: ^0.0.4 copied to clipboard

outdated

Cloudinary is a cloud service that offers a solution to a web application's entire image management pipeline

example/main.dart

import 'package:cloudinary_dart/cloudinary.dart';
import 'package:cloudinary_flutter/cld_image.dart';
import 'package:cloudinary_flutter/cloudinary_context.dart';
import 'package:flutter/material.dart';

void main() {
  CloudinaryContext.cloudinary =
      Cloudinary.fromCloudName(cloudName: "<your_cloud_name>");
  runApp(App());
}

class App extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        body: Center(
          child: SizedBox(
            width: 200,
            height: 140,
            child: CldImageWidget(
              publicId: "dog",
            ),
          ),
        ),
      ),
    );
  }
}
19
likes
0
points
2.67k
downloads

Publisher

verified publishercloudinary.com

Weekly Downloads

Cloudinary is a cloud service that offers a solution to a web application's entire image management pipeline

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

cloudinary_dart, flutter

More

Packages that depend on cloudinary_flutter