Component

DeviceFrame

Flutter implementation of the DeviceFrame component.

Usage

dart
import 'package:refraction_ui/refraction_ui.dart';

class MyDeviceFrameExample extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return DeviceFrame(
      // Add props here
    );
  }
}