Skip to content

Commit

Permalink
[이우섭] 0110 VMText, Rectangle 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
LeeUSeob committed Jan 10, 2024
1 parent 3272f38 commit 21032d5
Showing 1 changed file with 0 additions and 32 deletions.
32 changes: 0 additions & 32 deletions lib/vm_sdk/impl/vm_text_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -7,40 +7,8 @@ import 'package:flutter_inappwebview/flutter_inappwebview.dart';
import 'package:myapp/vm_sdk/impl/text_helper.dart';
import 'package:myapp/vm_sdk/types/types.dart';
import 'package:myapp/vm_sdk/impl/global_helper.dart';
import 'package:myapp/vm_sdk/widgets/customwebview.dart';
import 'package:rxdart/rxdart.dart';
import 'package:rxdart/subjects.dart';

class Rectangle {
double _x, _y, _width, _height;

Rectangle(this._x, this._y, this._width, this._height);

double get x => _x;

double get y => _y;

double get width => _width;

double get height => _height;
}

class VMText {
String _key;
String _value;
Rectangle _boundingBox;

VMText(this._key, this._value, this._boundingBox);

String get key => _key;

String get value => _value;

Rectangle get boundingBox => _boundingBox;
}

class VMTextWidget extends StatelessWidget {

InAppWebViewController? _controller;
String? _currentDirPath;
String? _currentPreviewPath;
Expand Down

0 comments on commit 21032d5

Please sign in to comment.