Skip to content

Latest commit

 

History

History
41 lines (29 loc) · 940 Bytes

README.md

File metadata and controls

41 lines (29 loc) · 940 Bytes

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