Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Refactored] add otp_text_field barrier file #66

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions example/lib/main.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import 'package:flutter/material.dart';
import 'package:otp_text_field/otp_field.dart';

import 'package:otp_text_field/otp_text_field.dart';
import 'package:otp_text_field/style.dart';


void main() => runApp(MyApp());

Expand Down
5 changes: 3 additions & 2 deletions lib/otp_text_field.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
library otp_text_field;

export 'otp_field.dart';
export 'otp_field_style.dart';
export 'src/otp_field.dart';
export 'src/otp_field_style.dart';
export 'src/style.dart';
4 changes: 2 additions & 2 deletions lib/otp_field.dart → lib/src/otp_field.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:otp_text_field/otp_field_style.dart';
import 'package:otp_text_field/style.dart';
import 'otp_field_style.dart';
import 'style.dart';

class OTPTextField extends StatefulWidget {
/// TextField Controller
Expand Down
File renamed without changes.
File renamed without changes.