Skip to content

Commit

Permalink
Revive herologo v2
Browse files Browse the repository at this point in the history
  • Loading branch information
beastoin committed Jan 3, 2025
1 parent f2cd2cb commit a35c321
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 18 deletions.
Binary file modified app/assets/images/herologo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed app/assets/images/herologo_v2.png
Binary file not shown.
Binary file added app/assets/images/herologo_v3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion app/lib/pages/capture/connect.dart
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class _ConnectDevicePageState extends State<ConnectDevicePage> {
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Connect Your Omi'),
title: const Text('Connect'),
backgroundColor: Theme.of(context).colorScheme.primary,
actions: [
IconButton(
Expand Down
34 changes: 17 additions & 17 deletions app/lib/widgets/device_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -46,23 +46,23 @@ class _DeviceAnimationWidgetState extends State<DeviceAnimationWidget> with Tick
Image.asset(
Assets.images.stars.path,
),
//widget.animatedBackground
// ? AnimatedBuilder(
// animation: _animation,
// builder: (context, child) {
// return Image.asset(
// Assets.images.blob.path,
// height: (MediaQuery.sizeOf(context).height <= 700 ? 360 : 390) *
// widget.sizeMultiplier *
// _animation.value,
// width: (MediaQuery.sizeOf(context).height <= 700 ? 360 : 390) *
// widget.sizeMultiplier *
// _animation.value,
// );
// },
// )
// : Container(),
//// Image.asset("assets/images/blob.png"),
widget.animatedBackground
? AnimatedBuilder(
animation: _animation,
builder: (context, child) {
return Image.asset(
Assets.images.blob.path,
height: (MediaQuery.sizeOf(context).height <= 700 ? 360 : 390) *
widget.sizeMultiplier *
_animation.value,
width: (MediaQuery.sizeOf(context).height <= 700 ? 360 : 390) *
widget.sizeMultiplier *
_animation.value,
);
},
)
: Container(),
// Image.asset("assets/images/blob.png"),
Image.asset(
Assets.images.herologo.path,
height: (MediaQuery.sizeOf(context).height <= 700 ? 130 : 160) * widget.sizeMultiplier,
Expand Down

0 comments on commit a35c321

Please sign in to comment.