RIP-Comm / sossoldi

"Sossoldi" is a wealth management / personal finance / Net Worth tracking app, made with Flutter.
MIT License
276 stars 75 forks source link

Incorrectly named imports #57

Closed 0xbaggi closed 1 year ago

0xbaggi commented 1 year ago

I think we should check import names in all dart files. They need to be relative paths as explained in #43.

For example:

// Before 
import 'package:sossoldi/model/example.dart';

// After
import 'model/example.dart';
mikev-cw commented 1 year ago

Now all paths are correctly switched to relative. Thank you, I'm closing this.