I create a floating button like a pro... ;-)
CGRect floatingFrame = CGRectMake(self.view.frame.size.width - 84, self.view.frame.size.height - 84, 64, 64);
_floatingActionButton = [[LiquidFloatingActionButton alloc] initWithFrame: floatingFrame];
_floatingActionButton.enableShadow = false;
_floatingActionButton.color = ZG_COLOR_BLUE;
_floatingActionButton.dataSource = self;
_floatingActionButton.delegate = self;
[self.view addSubview:_floatingActionButton];
However, the "enableShadow" option does not propagate as it should.
If I manually edit "CircleLiquidBaseView" and change "var enableShadow = true" to "false", it works as expected...
I create a floating button like a pro... ;-)
However, the "enableShadow" option does not propagate as it should.
If I manually edit "CircleLiquidBaseView" and change "var enableShadow = true" to "false", it works as expected...