dart_cv 1.0.0 copy "dart_cv: ^1.0.0" to clipboard
dart_cv: ^1.0.0 copied to clipboard

Create professional profile resumes using Flutter Widgets.

🪪 Dart CV #

Create professional profile resumes using Flutter Widgets.

Get Started #

  1. Clone this repository
git clone https://github.com/idootop/dart-cv.git
cd resume_flutter
copied to clipboard
  1. Install dependencies

Ensure that you have set up the Dart environment before running this project.

dart pub get
copied to clipboard
  1. Edit your resume

Open and edit your resume in the example/dart_cv.dart file.

import 'package:dart_cv/dart_cv.dart';
import 'package:pdf/widgets.dart';

void main() async {
  await XPDF.render(
    'example/resume.pdf',
    margin: EdgeInsets.all(24.px),
    body: (Context context) => <Widget>[
      // Profile
      XHeader(
        name: 'Your Name',
        descriptions: [
          XText('(+86) 123456789'), // Phone number
          XLink('mailto:me@xbox.work', text: 'me@xbox.work'), // Email
          XLink('https://github.com/idootop',
              text: 'github.com/idootop'), // Github
        ],
      ),
      // ...
    ],
  );
}
copied to clipboard
  1. Build your resume
dart run example/resume.dart
copied to clipboard

The PDF file will be exported at example/resume.pdf.

1
likes
140
points
26
downloads

Publisher

verified publisherxbox.work

Weekly Downloads

2024.07.05 - 2025.01.17

Create professional profile resumes using Flutter Widgets.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

pdf

More

Packages that depend on dart_cv