adamwox

Results 17 comments of adamwox

Video was private, I've changed it to nonpublic. It should be ok now 😉

Hi @maximelafarie, I moved to Angular Material 🙈

METHOD ```C# public static async Task InsertUpdateAttribute(IDbConnection db, DokAtrybuty da) { if (await HasDocumentAttribute(da.DAt_TrNId, da.DAt_Kod, db)) { await db.UpdateAsync(da); } else { da.DAt_DeAId = await GetAttributeID(da.DAt_Kod, db); await db.InsertAsync(da); }...

Atom ver. 1.19.5 Syntax Theme: One Dark File name: header.html What do you mean about the scope?

I've changed things a little bit. `onChanged()` is not async anymore. As you can see I'm setting the state on every key pressed ```dart onChanged: (value) { if (!["", null,...