Panorama - Flutter Widget
Find a file
Zebiao Hu 538fd94889
Update panorama.dart
fix onImageLoad call
2021-11-28 20:08:01 +08:00
example migrate to null safety 2021-03-13 12:05:12 +08:00
lib Update panorama.dart 2021-11-28 20:08:01 +08:00
resource update version info 2020-12-30 15:29:20 +08:00
.gitignore initial 2020-02-18 21:43:38 +08:00
.metadata initial 2020-02-18 21:43:38 +08:00
CHANGELOG.md update version info 2021-04-16 22:50:03 +08:00
LICENSE Initial commit 2020-02-18 18:21:10 +08:00
pubspec.lock migrate to null safety 2021-03-13 12:05:12 +08:00
pubspec.yaml update version info 2021-04-16 22:50:03 +08:00
README.md update version info 2021-04-16 22:50:03 +08:00

Panorama

pub package

A 360-degree panorama viewer.

Getting Started

Add panorama as a dependency in your pubspec.yaml file.

dependencies:
  panorama: ^0.4.1

Import and add the Panorama widget to your project.

import 'package:panorama/panorama.dart';
... ...
  
@override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Center(
        child: Panorama(
          child: Image.asset('assets/panorama.jpg'),
        ),
      ),
    );
  }

Screenshot

screenshot

Usage Tutorials