rxlabz / panache

🎨 Flutter Material Theme editor
https://rxlabz.github.io/panache
1.76k stars 233 forks source link

how to get this to work :) ? #23

Open KevinRohn opened 4 years ago

KevinRohn commented 4 years ago

Hi,

can someone tell me how to get this to work? The side freezes every time. I tried it on the newest version of Chrome for macOS and also for windows. Do I have to run it locally?

Thank you in advance

cheers, Kevin

boehlefeld commented 4 years ago

Hi,

can someone tell me how to get this to work? The side freezes every time. I tried it on the newest version of Chrome for macOS and also for windows. Do I have to run it locally?

Thank you in advance

cheers, Kevin

Having the same problem here. Local deploy to iOS or android fails at all.

The web version works with release tag named. v1.0-alpha.1 I doesn't hang up on any button tap yet.

currently I'm on [✓] Flutter (Channel master, v1.13.1-pre.99, on Mac OS X 10.15.2 19C57, locale en-DE)

KevinRohn commented 4 years ago

Hi @boehlefeld, local web version works for me, I'm using the current master branch.

Thank you - create work 👍

ricardogobbo commented 4 years ago

You can use android app too. It works pretty fine. https://play.google.com/store/apps/details?id=bz.rxla.panache&hl=pt

remoteportal commented 4 years ago

I can't get it to work on Chrome or Safari--I think it's because Flutter Web is pre-production.

pmagnuson commented 4 years ago

using the web version https://rxlabz.github.io/panache/#/ freezes in every browser I have tried. Seems like if you click outside of the color sliders or color patch, it freezes.

jugal13 commented 4 years ago

@pmagnuson Current workout download the app and run it locally on beta channel it works fine

daybson commented 4 years ago

Cant compile :

Compiler message:
../panache_ui/lib/src/screens/editor/controls/color_picker/color_slider.dart:1101:9: Error: The superclass, 'Diagnosticable', has no unnamed constructor that takes no arguments.       
  const GradientSliderThemeData({
Syaba999 commented 4 years ago

Cant compile :

Compiler message:
../panache_ui/lib/src/screens/editor/controls/color_picker/color_slider.dart:1101:9: Error: The superclass, 'Diagnosticable', has no unnamed constructor that takes no arguments.       
  const GradientSliderThemeData({

@kazyamof In \panache_ui\lib\src\screens\editor\controls\color_picker\color_slider.dart change:

class GradientSliderThemeData extends Diagnosticable {

to

class GradientSliderThemeData with DiagnosticableMixin {