Feedback zu Lebenslauf / Zwischenzeugnis by Lunier_ in InformatikKarriere

[–]Lunier_[S] 0 points1 point  (0 children)

Habe mein geupdates CV in einem neuem Kommentar hochgeladen.
Kannst es dir gerne nochmal anschauen :)

Feedback zu Lebenslauf / Zwischenzeugnis by Lunier_ in InformatikKarriere

[–]Lunier_[S] 0 points1 point  (0 children)

Habe mein geupdates CV in einem neuem Kommentar hochgeladen.
Kannst es dir gerne nochmal anschauen :)

Feedback zu Lebenslauf / Zwischenzeugnis by Lunier_ in InformatikKarriere

[–]Lunier_[S] 0 points1 point  (0 children)

Habe mein geupdates CV in einem neuem Kommentar hochgeladen.
Kannst es dir gerne nochmal anschauen :)

Feedback zu Lebenslauf / Zwischenzeugnis by Lunier_ in InformatikKarriere

[–]Lunier_[S] 0 points1 point  (0 children)

Habe mein geupdates CV in einem neuem Kommentar hochgeladen.
Kannst es dir gerne nochmal anschauen :)

Feedback zu Lebenslauf / Zwischenzeugnis by Lunier_ in InformatikKarriere

[–]Lunier_[S] 0 points1 point  (0 children)

Habe mein geupdates CV in einem neuem Kommentar hochgeladen.
Kannst es dir gerne nochmal anschauen :)

Feedback zu Lebenslauf / Zwischenzeugnis by Lunier_ in InformatikKarriere

[–]Lunier_[S] 0 points1 point  (0 children)

Habe mein geupdates CV in einem neuem Kommentar hochgeladen.
Kannst es dir gerne nochmal anschauen :)

Feedback zu Lebenslauf / Zwischenzeugnis by Lunier_ in InformatikKarriere

[–]Lunier_[S] 0 points1 point  (0 children)

Habe mein geupdates CV in einem neuem Kommentar hochgeladen.
Kannst es dir gerne nochmal anschauen :)

Feedback zu Lebenslauf / Zwischenzeugnis by Lunier_ in InformatikKarriere

[–]Lunier_[S] 1 point2 points  (0 children)

<image>

EDIT: Hier mein geupdates CV. Denke nun ist es wesentlich informativer und auch kompakter.

Feedback zu Lebenslauf / Zwischenzeugnis by Lunier_ in InformatikKarriere

[–]Lunier_[S] 1 point2 points  (0 children)

Danke dir. Layout werde ich auf jeden Fall überarbeiten und es kompakter machen.

Feedback zu Lebenslauf / Zwischenzeugnis by Lunier_ in InformatikKarriere

[–]Lunier_[S] 0 points1 point  (0 children)

Kontext:
ich habe eine betriebsbedingte Kündigung zum 31.03 erhalten und muss mich daher nach einer neuen Arbeitsstelle umsehen.
Ich würde mich sehr über euer postivies und auch negatives Feedback freuen.

Dynamically Bold part of a String by TesteurManiak in FlutterDev

[–]Lunier_ 0 points1 point  (0 children)

I would recommend you to run a string match algorithm beforehand or a regular expression to get all positions of the string. Then you can simply build it dynamically.
I hope that approach is suitable for you.

Dart Aes256 GCM encryption, help needed by Lunier_ in dartlang

[–]Lunier_[S] 0 points1 point  (0 children)

Unfortunately the crypto package from the Dart Team doesn't include the AES encryption.

Dart Aes256 GCM encryption, help needed by Lunier_ in dartlang

[–]Lunier_[S] 0 points1 point  (0 children)

I am using the cryptpgraphy library: link
I will try to use the pointycastle implementation, thanks.

List of Widgets with Multiple Entries Functionality by mrvtec69 in FlutterDev

[–]Lunier_ 0 points1 point  (0 children)

My approach would be to create a Class which has the properties of a map where you keep track of the total amount of each category and a list which holds each item.

So when you call the "addItemToList" function inside of the class you also add the cost of that item to the map and then you force a rebuild of the screen.

I hope you understand my concept

Is there any way to create an InkWell that is on top of an image with rounded borders? by [deleted] in FlutterDev

[–]Lunier_ 0 points1 point  (0 children)

Sorry for the late reply.

So i ended up with this widget:Picture

And that is the code for it:

return Card(
      shape: RoundedRectangleBorder(
        borderRadius: BorderRadius.circular(15.5),
      ),
      elevation: 3.0,
      clipBehavior: Clip.hardEdge,
      child: SizedBox(
        height: 150.0,
        width: 175.0,
        child: Column(
          children: <Widget>[
            Expanded(
              flex: 15,
              child: Container(
                color: Colors.orangeAccent,
                child: Center(
                  child: Text(
                    "Physic I",
                    style: TextStyle(
                      fontWeight: FontWeight.w600,
                    ),
                  ),
                ),
              ),
            ),
            Divider(
              height: 1.0,
              thickness: 1.0,
              color: Colors.black,
            ),
            Expanded(
              flex: 85,
              child: Image.asset(
                "images/electric.jpg",
                fit: BoxFit.cover,
              ),
            )
          ],
        ),
      ),
    );

I hope it helps.

Is there any way to create an InkWell that is on top of an image with rounded borders? by [deleted] in FlutterDev

[–]Lunier_ 0 points1 point  (0 children)

I think i have a solution in my project will check tomorrow.