v0.0.5figma_frame_inspector
Figmaフレームがアプリにどれだけ正確に実装されたかを検証するためのFlutterプラグインです。
Figmaフレームがアプリにどれだけ正確に実装されたかを検証するためのFlutterプラグインです。
{"sdk":"flutter"}^5.2.1^3.2.3{"sdk":"flutter"}^2.0.0以下は英語原文のスナップショットです。最新版は GitHub をご覧ください。
A Flutter plugin to verify how accurately the Figma frame was implemented in the app (whether paddings and elements sizes are correct).
With this tool any developer can verify all the paddings, font styles and elements sizes matches design specification in Figma.
recording
This plugin provides FigmaFrameInspector widget that renders provided Figma frame on top of child screen widget. This helps to check proper frame implementation.
PS: Example Figma frame was taken from here
| Implementation | Figma | Diff |
|---|---|---|
| https://github.com/amatkivskiy/figma-frame-inspector/blob/c69d08ccdcfad4cabd0c5229a5671929e217bb93/media/implementation.png | https://github.com/amatkivskiy/figma-frame-inspector/blob/c69d08ccdcfad4cabd0c5229a5671929e217bb93/media/figma-frame.png | https://github.com/amatkivskiy/figma-frame-inspector/blob/c69d08ccdcfad4cabd0c5229a5671929e217bb93/media/diff.png |
flutter pub add figma_frame_inspector
figma-copy-frame
import 'package:figma_frame_inspector/figma_frame_inspector.dart';FigmaFrameInspector widget:class MyHomePage extends StatelessWidget {
const MyHomePage({Key? key, required this.title}) : super(key: key);
final String title;
@override
Widget build(BuildContext context) {
return FigmaFrameInspector( // <-- Wrap your screen widget with this widget.
frameUrl:
"<figma-frame-url>", // <-- Specify the Figma frame url. Looks like this: https://www.figma.com/file/<file_key>/<file_name >?node-id=<node_id>
figmaToken: '<figma-token>', // <-- Specify the Figma `Personal access token` from Account Settings page.
// Optional parameters:
scale: 3, // A number between `0.01` and `4`, the image scaling factor.
initialOpacity: .3, // Opacity of the frame on the screen start (default `30%`).
enabled: true, // Enable or disable the frame overlay (default `true`).
isTouchToChangeOpacityEnabled: true, // Enable or disable vertical scroll to change the frame overlay opacity (default `true`).
child: Scaffold(
appBar: AppBar(
title: Text(title),
),
floatingActionButton: const FloatingActionButton(
onPressed: null,
tooltip: 'Increment',
child: Icon(Icons.add),
),
),
);
}
}
This plugin was heavily inspired by flutter_figma_preview
Figma sample design taken from here https://www.figma.com/community/file/1060856334579637757
Can be found here.